Skip to content

Commit 60728ac

Browse files
committed
[py]: Rename linting recipe to linting-ci for GHA
1 parent ae0130b commit 60728ac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci-python.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151
- name: Test with tox
5252
run: tox -c py/tox.ini
5353
env:
54-
TOXENV: linting-check
54+
# 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
5557

5658
mypy:
5759
name: Mypy

py/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ py_version=38
3131
force_single_line = True
3232

3333

34-
[testenv:linting-check]
34+
[testenv:linting-ci]
3535
; checks linting for CI with stricter exiting when failing.
3636
skip_install = true
3737
deps =

0 commit comments

Comments
 (0)