nk20/.gitlab-ci.yml

27 lines
415 B
YAML
Raw Normal View History

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