summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-05-10 08:43:45 -0700
committerJohn L. Villalovos <john@sodarock.com>2022-05-10 08:43:45 -0700
commit78b4f995afe99c530858b7b62d3eee620f3488f2 (patch)
treeab1249ffe9ad6289590a1f0f19facb3806549546 /.github
parentd68cacfeda5599c62a593ecb9da2505c22326644 (diff)
downloadgitlab-78b4f995afe99c530858b7b62d3eee620f3488f2.tar.gz
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 92ba2f2..21d6beb 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -32,7 +32,7 @@ jobs:
- name: Run black code formatter (https://black.readthedocs.io/en/stable/)
run: tox -e black -- --check
- name: Run flake8 (https://flake8.pycqa.org/en/latest/)
- run: tox -e pep8
+ run: tox -e flake8
- name: Run mypy static typing checker (http://mypy-lang.org/)
run: tox -e mypy
- name: Run isort import order checker (https://pycqa.github.io/isort/)