All Downloads are FREE. Search and download functionalities are using the official Maven repository.

python-legacy.gitlab-ci.mustache Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
# ref: https://docs.gitlab.com/ee/ci/README.html

stages:
  - test

.nosetest:
  stage: test
  script:
   - pip install -r requirements.txt
   - pip install -r test-requirements.txt
   {{#useNose}}
   - nosetests
   {{/useNose}}
   {{^useNose}}
   - pytest --cov={{{packageName}}}
   {{/useNose}}

nosetest-2.7:
  extends: .nosetest
  image: python:2.7-alpine
nosetest-3.3:
  extends: .nosetest
  image: python:3.3-alpine
nosetest-3.4:
  extends: .nosetest
  image: python:3.4-alpine
nosetest-3.5:
  extends: .nosetest
  image: python:3.5-alpine
nosetest-3.6:
  extends: .nosetest
  image: python:3.6-alpine
nosetest-3.7:
  extends: .nosetest
  image: python:3.7-alpine
nosetest-3.8:
  extends: .nosetest
  image: python:3.8-alpine




© 2015 - 2024 Weber Informatics LLC | Privacy Policy