diff options
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3c1dc16..9cd9587 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,7 @@ test-pypy: lint: script: - - tox -e pylint,pylint-tests,flake8,black + - tox -e pylint,pylint-tests,flake,black mypy: script: @@ -6,7 +6,7 @@ per-file-ignores = fietsboek/models/__init__.py:F401 [tox] -envlist = python,pylint,pylint-tests,flake8,mypy,black +envlist = python,pylint,pylint-tests,flake,mypy,black # This can be removed in tox 4 as it will be the default: isolated_build = true @@ -33,7 +33,7 @@ commands_pre = commands = bash -c "pylint --rcfile=pylint.tests.toml tests/**/*.py" -[testenv:flake8] +[testenv:flake] # This is a bit of a hack since flake8 specifies Python 3.8 as minimum required # version, while fietsboek only specifices 3.7. Thus, we manually install # flake8 via pip and bypass poetry's locking- |