supervised_layout_benchmark/.gitlab-ci.yml

22 lines
434 B
YAML

default:
tags:
- docker
image:
name: ufoym/deepo:all-jupyter
entrypoint: [""]
before_script:
- pip install -U .
- pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
- pip install -r requirements.txt
stages:
- test
pytest:
stage: test
script:
- pip install -U .[dev]
- pytest --cov=./
coverage: '/^TOTAL.*\s+(\d+\%)$/'