We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5858f4 commit 63c087eCopy full SHA for 63c087e
ci_tools/run_tests.sh
@@ -22,7 +22,8 @@ trap "cleanup" INT TERM EXIT
22
echo -e "\n\n****** Running tests ******\n\n"
23
if [ "${TRAVIS_PYTHON_VERSION}" = "3.5" ]; then
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/
+ 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/
27
else
28
# faster - skip coverage and html report
29
python -m pytest --junitxml=reports/junit/junit.xml -v makefun/tests/
0 commit comments