diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb3c9ef..e500b7a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ cache: before_script: - python --version # For debugging - - pip install tox + - pip install 'tox<4' test: script: @@ -30,8 +30,12 @@ test-pypy: lint: script: - - tox -e pylint,flake8 + - tox -e pylint,flake8,black lint-tests: script: - tox -e pylint-tests + +mypy: + script: + - tox -e mypy |