File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ trap "cleanup" INT TERM EXIT
22
22
echo -e " \n\n****** Running tests ******\n\n"
23
23
if [ " ${TRAVIS_PYTHON_VERSION} " = " 3.5" ]; then
24
24
# full
25
- python -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html --cov-report term-missing --cov=./makefun -v makefun/tests/
25
+ coverage run --source makefun -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html -v makefun/tests/
26
+ # python -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html --cov-report term-missing --cov=./makefun -v makefun/tests/
26
27
else
27
28
# faster - skip coverage and html report
28
29
python -m pytest --junitxml=reports/junit/junit.xml -v makefun/tests/
You can’t perform that action at this time.
0 commit comments