Skip to content
Snippets Groups Projects
.gitlab-ci.yml 238 B
Newer Older
test:2.7:
  image: python2.7
  script:
    - cat requirements.txt | xargs -n 1 pip install
    - python setup.py test

test:3.5:
  image: python3.5
  script:
    - cat requirements.txt | xargs -n 1 pip install
    - python setup.py test