Skip to content

Commit 78b4f99

Browse files
chore: rename the test which runs flake8 to be flake8
Previously the test was called `pep8`. The test only runs `flake8` so call it `flake8` to be more precise.
1 parent d68cacf commit 78b4f99

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run black code formatter (https://black.readthedocs.io/en/stable/)
3333
run: tox -e black -- --check
3434
- name: Run flake8 (https://flake8.pycqa.org/en/latest/)
35-
run: tox -e pep8
35+
run: tox -e flake8
3636
- name: Run mypy static typing checker (http://mypy-lang.org/)
3737
run: tox -e mypy
3838
- name: Run isort import order checker (https://pycqa.github.io/isort/)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 1.6
33
skipsdist = True
44
skip_missing_interpreters = True
5-
envlist = py310,py39,py38,py37,pep8,black,twine-check,mypy,isort,cz
5+
envlist = py310,py39,py38,py37,flake8,black,twine-check,mypy,isort,cz
66

77
[testenv]
88
passenv = GITLAB_IMAGE GITLAB_TAG PY_COLORS NO_COLOR FORCE_COLOR
@@ -38,7 +38,7 @@ deps = -r{toxinidir}/requirements-lint.txt
3838
commands =
3939
mypy {posargs}
4040

41-
[testenv:pep8]
41+
[testenv:flake8]
4242
basepython = python3
4343
envdir={toxworkdir}/lint
4444
deps = -r{toxinidir}/requirements-lint.txt

0 commit comments

Comments
 (0)