Skip to content
Snippets Groups Projects
.gitlab-ci.yml 754 B
image: docker:latest

stages:
  - test

test35:
  stage: test
  image: python:3.5
  script:
    - pip install -r requirements.txt
    - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m

test36:
  stage: test
  image: python:3.6
  script:
    - pip install -r requirements.txt
    - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m

test37:
  stage: test
  image: python:3.7
  script:
    - pip install -r requirements.txt
    - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m

testrc:
  stage: test
  image: python:rc
  script:
    - pip install -r requirements.txt
    - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m