Skip to content
Snippets Groups Projects
.gitlab-ci.yml 567 B
Newer Older
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
image: docker:latest

stages:
  - test

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

test36:
  stage: test
  image: python:3.6
  script:
    - pip install -r requirements.txt
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
    - coverage run --source='basetheme_bootstrap' runtests.py && coverage report  -m
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed

test37:
  stage: test
  image: python:3.7
  script:
    - pip install -r requirements.txt
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
    - coverage run --source='basetheme_bootstrap' runtests.py && coverage report  -m