Skip to content
Snippets Groups Projects
.gitlab-ci.yml 415 B
Newer Older
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
image: python:3.6

stages:
  - test
  - quality-assurance
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed

before_script:
  - pip install tox

py36-django22:
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
  image: python:3.6
  stage: test
  script: tox -e py36-django22
py37-django22:
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
  image: python:3.7
  stage: test
  script: tox -e py37-django22
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed

linters:
  image: python:3.6
  stage: quality-assurance
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
  script: tox -e linters

  # Be nice to new contributors, but please use `tox`
  allow_failure: true