1
0
Fork 0

CI: Add static python3 job

Signed-off-by: Fabian P. Schmidt <kerel@mailbox.org>
merge-requests/863/head
Fabian P. Schmidt 2019-12-31 22:07:41 +01:00
parent 7412376ec5
commit 183dade977
1 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,13 @@ static_python:
- pip install "$GITLAB_CI_PYPI_TOX"
script:
- tox -e "py2-flake8,isort,yapf,py2-pylint"
static_python3:
stage: static
image: ${GITLAB_CI_IMAGE_PYTHON3}
before_script:
- pip install "$GITLAB_CI_PYPI_TOX"
script:
- tox -e "py3-flake8,py3-pylint"
docs:
stage: build
image: ${GITLAB_CI_IMAGE_PYTHON3}