File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ trap "cleanup" INT TERM EXIT
2222echo -e " \n\n****** Running tests ******\n\n"
2323if [ " ${TRAVIS_PYTHON_VERSION} " = " 3.5" ]; then
2424 # copy the conftest.py file before executing.
25- # cp ci_tools/conftest.py valid8/tests/
25+ # cp ci_tools/conftest.py valid8/
2626 # Note: an alternative could be to add ci_tools/ at the end of the below command but not sure it will be applied on all tests.
2727
28- coverage run --source valid8 -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html -v valid8/tests/
29- # python -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html --cov-report term-missing --cov=./valid8 -v valid8/tests/
28+ coverage run --source valid8 -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html -v valid8/
29+ # python -m pytest --junitxml=reports/junit/junit.xml --html=reports/junit/report.html --cov-report term-missing --cov=./valid8 -v valid8/
3030else
3131 # faster - skip coverage and html report
32- python -m pytest --junitxml=reports/junit/junit.xml -v valid8/tests/
33- fi
32+ python -m pytest --junitxml=reports/junit/junit.xml -v valid8/
33+ fi
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ test=pytest
1919
2020[tool:pytest]
2121norecursedirs =tests/helpers
22- addopts = --verbose --doctest-modules --ignore-glob =' **/_*.py' --ignore =_typing_inspect .py
22+ addopts = --verbose --doctest-modules --ignore-glob =' **/_*.py' --ignore =utils/typing_inspect .py
2323doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
2424testpaths = valid8
You can’t perform that action at this time.
0 commit comments