onedns/.gitlab-ci.yml

22 lines
329 B
YAML

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