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

stages:
  - test

before_script:
  - pip install tox

python36:
  image: python:3.6
  stage: test
  script: tox -e py36

python37:
  image: python:3.7
  stage: test
  script: tox -e py37

linters:
  stage: test
  script: tox -e linters