We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f3913 commit 97e7f3eCopy full SHA for 97e7f3e
.github/workflows/test.yml
@@ -93,6 +93,9 @@ jobs:
93
arch: x64
94
os: windows-latest
95
toxenv: type
96
+ # We also run these checks with pre-commit in CI,
97
+ # but it's useful to run them with tox too,
98
+ # to ensure the tox env works as expected
99
- name: Formatting with Black + isort and code style with flake8
100
python: '3.7'
101
.pre-commit-config.yaml
@@ -14,3 +14,7 @@ repos:
14
additional_dependencies:
15
- flake8-bugbear==22.12.6 # must match test-requirements.txt
16
- flake8-noqa==1.3.0 # must match test-requirements.txt
17
+
18
+ci:
19
+ # We run flake8 as part of our GitHub Actions suite in CI
20
+ skip: [flake8]
0 commit comments