nk20/.gitlab-ci.yml

27 lines
415 B
YAML
Raw Normal View History

2019-07-08 10:55:48 +00:00
image: python:3.6
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
py36-django22:
2019-07-08 10:55:48 +00:00
image: python:3.6
stage: test
2020-02-18 19:58:01 +00:00
script: tox -e py36-django22
2019-07-08 10:55:48 +00:00
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
linters:
2020-02-18 19:58:01 +00:00
image: python:3.6
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