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.
linting-ci
1 parent ae0130b commit 60728acCopy full SHA for 60728ac
.github/workflows/ci-python.yml
@@ -51,7 +51,9 @@ jobs:
51
- name: Test with tox
52
run: tox -c py/tox.ini
53
env:
54
- TOXENV: linting-check
+ # If this fails, it will exit. Local work should be using `tox -e linting` prior to committing.
55
+ # the linting-ci recipe exists solely for CI and will not attempt to rewrite any files in-place etc.
56
+ TOXENV: linting-ci
57
58
mypy:
59
name: Mypy
py/tox.ini
@@ -31,7 +31,7 @@ py_version=38
31
force_single_line = True
32
33
34
-[testenv:linting-check]
+[testenv:linting-ci]
35
; checks linting for CI with stricter exiting when failing.
36
skip_install = true
37
deps =
0 commit comments