Skip to content
Snippets Groups Projects

Add gitlab CI configuration.

1 file
+ 6
1
Compare changes
  • Side-by-side
  • Inline
+ 6
1
image: clarinpl/python:3.8
image: clarinpl/python:3.8
 
cache:
 
paths:
 
- .tox
 
stages:
stages:
- test
- test
- deploy
- deploy
before_script:
before_script:
 
- pip install tox==2.9.1
- apt-get update -yqq
- apt-get update -yqq
&& apt-get install -yqq --no-install-recommends
&& apt-get install -yqq --no-install-recommends
make
make
@@ -15,7 +20,7 @@ before_script:
@@ -15,7 +20,7 @@ before_script:
unittests:
unittests:
stage: test
stage: test
script:
script:
- python setup.py test
- tox -v -e pytest
pypi_deploy:
pypi_deploy:
before_script:
before_script:
Loading