GitLab CI
This commit is contained in:
parent
c91f77702a
commit
6fb55ddc2d
1 changed files with 10 additions and 0 deletions
10
.gitlab-ci.yml
Normal file
10
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
image: debian/stretch
|
||||||
|
|
||||||
|
test:
|
||||||
|
script:
|
||||||
|
- apt-get update -qy
|
||||||
|
- apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools
|
||||||
|
- pip3 install -r requirements.txt
|
||||||
|
- python3-coverage run --branch setup.py test
|
||||||
|
- python3-coverage report -m
|
Loading…
Reference in a new issue