smoketest:
stage: test
script:
- - pip install pytest-cov requests
- - py.test -q --cov=sima tests
+ - pip install requests
- python setup.py test
# build wheel and source
- python setup.py bdist_wheel sdist
- dist/*.tar.gz
- dist/*.zip
+unittests:
+ stage: test
+ script:
+ - pip install pytest-cov requests
+ - py.test -q --cov=sima --junitxml=report.xml tests
+ artifacts:
+ when: always
+ reports:
+ junit: report.xml
+
vinstall:
stage: test
script: