onedns/.gitlab-ci.yml

20 lines
313 B
YAML

image: python:2.7.12-slim
before_script:
- bash ci-scripts/before.sh
variables:
COVERAGE_FILE: .coverage
ONE_AUTH: "/tmp/test-one-auth"
ONE_XMLRPC: "http://localhost:2633/RPC2"
pytest:
stage: test
script:
- python setup.py test
tags:
- docker
after_script:
- bash ci-scripts/after.sh