1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-11-22 00:02:28 +00:00

Added coverage tests

This commit is contained in:
J. Fernando Sánchez 2017-02-17 11:24:57 +01:00
parent b4ca5f4a7c
commit 7eaf303124
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@ stages:
- source .venv/$PYTHON_VERSION/bin/activate - source .venv/$PYTHON_VERSION/bin/activate
- pip install --use-wheel -r requirements.txt - pip install --use-wheel -r requirements.txt
- pip install --use-wheel -r test-requirements.txt - pip install --use-wheel -r test-requirements.txt
- python setup.py test - py.test --cov=senpy --cov-report term-missing
test-3.5: test-3.5:
<<: *test_definition <<: *test_definition

View File

@ -1,2 +1,3 @@
pytest pytest
mock mock
pytest-cov