1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-06 07:13:00 +00:00
nk20/.gitlab-ci.yml

27 lines
415 B
YAML
Raw Normal View History

2019-07-08 12:55:48 +02:00
image: python:3.6
stages:
- test
2020-02-18 20:58:01 +01:00
- quality-assurance
2019-07-08 12:55:48 +02:00
before_script:
- pip install tox
2020-02-18 20:58:01 +01:00
py36-django22:
2019-07-08 12:55:48 +02:00
image: python:3.6
stage: test
2020-02-18 20:58:01 +01:00
script: tox -e py36-django22
2019-07-08 12:55:48 +02:00
2020-02-18 20:58:01 +01:00
py37-django22:
2019-07-08 12:55:48 +02:00
image: python:3.7
stage: test
2020-02-18 20:58:01 +01:00
script: tox -e py37-django22
2019-07-08 12:55:48 +02:00
linters:
2020-02-18 20:58:01 +01:00
image: python:3.6
stage: quality-assurance
2019-07-08 12:55:48 +02:00
script: tox -e linters
2020-02-18 20:58:01 +01:00
# Be nice to new contributors, but please use `tox`
allow_failure: true