We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a6bbe commit 39e7ba3Copy full SHA for 39e7ba3
.github/workflows/ci.yml
@@ -42,6 +42,23 @@ jobs:
42
- name: Run tests
43
run: python -m tox -e flake8_5,flake8_6
44
45
+ slow_tests:
46
+ runs-on: ubuntu-latest
47
+ strategy:
48
+ fail-fast: false
49
+ steps:
50
+ - uses: actions/checkout@v3
51
+ - name: Set up Python 3.11
52
+ uses: actions/setup-python@v3
53
+ with:
54
+ python-version: 3.11
55
+ - name: Install dependencies
56
+ run: |
57
+ python -m pip install --upgrade pip setuptools tox
58
+ python -m tox --notest --recreate -e flake8_6
59
+ - name: Run tests
60
+ run: python -m tox -e flake8_6 -- --runfuzz --no-cov
61
+
62
release:
63
runs-on: ubuntu-latest
64
needs: [check, test]
0 commit comments