2020-12-05 20:20:38 -08:00
|
|
|
[pytest]
|
|
|
|
#addopts = --cov pywb -vv --doctest-modules pywb --cov-report=xml --cov-report=term
|
|
|
|
testpaths =
|
|
|
|
tests
|
|
|
|
|
|
|
|
[tox]
|
2022-08-31 16:04:55 -07:00
|
|
|
envlist = py36, py37, py38, py39, py310
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
[gh-actions]
|
|
|
|
python =
|
|
|
|
3.6: py36
|
|
|
|
3.7: py37
|
|
|
|
3.8: py38
|
|
|
|
3.9: py39
|
2022-08-31 18:30:45 -07:00
|
|
|
3.10: py310
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
[testenv]
|
2022-08-31 18:30:45 -07:00
|
|
|
setenv = PYWB_NO_VERIFY_SSL = 1
|
2020-12-05 20:20:38 -08:00
|
|
|
deps =
|
2022-08-31 16:04:55 -07:00
|
|
|
-rtest_requirements.txt
|
2020-12-05 20:20:38 -08:00
|
|
|
-rrequirements.txt
|
|
|
|
-rextra_requirements.txt
|
|
|
|
commands =
|
2021-04-27 20:52:24 -07:00
|
|
|
py.test --cov-config .coveragerc --cov pywb -v --doctest-modules ./pywb/ tests/
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
|