hc99's picture
Add files using upload-large-folder tool
ce676f7 verified
raw
history blame
431 Bytes
[tox]
isolated_build = true
envlist = py37
[testenv]
changedir = test
extras =
test
setenv =
COVERAGE_FILE = test-reports/.coverage
PYTEST_ADDOPTS = --junitxml=test-reports/{envname}/junit.xml -vv
commands =
coverage run --source haystack --parallel-mode -m pytest {posargs}
coverage combine
coverage report -m
coverage html -d test-reports/coverage-html
coverage xml -o test-reports/coverage.xml