aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2022-12-09 20:41:37 +0100
committerDaniel Schadt <kingdread@gmx.de>2022-12-09 20:41:37 +0100
commitf919c404ba11886395c4669734cf11a68af4d904 (patch)
tree7cd3c7ae9c4051d5e7d946684a89c3e2d775559d /.gitlab-ci.yml
parent2fae8e0d39f436976d90cfb94ac31a1a4427771d (diff)
parent36e28240e810e162ebb46bede1e6eab4f5fe4a3a (diff)
downloadfietsboek-f919c404ba11886395c4669734cf11a68af4d904.tar.gz
fietsboek-f919c404ba11886395c4669734cf11a68af4d904.tar.bz2
fietsboek-f919c404ba11886395c4669734cf11a68af4d904.zip
Merge branch 'type-hints'
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
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