Skip to content

Commit 39e7ba3

Browse files
committed
run fuzz in CI
1 parent 80a6bbe commit 39e7ba3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,23 @@ jobs:
4242
- name: Run tests
4343
run: python -m tox -e flake8_5,flake8_6
4444

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+
4562
release:
4663
runs-on: ubuntu-latest
4764
needs: [check, test]

0 commit comments

Comments
 (0)