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]
|
2024-04-01 13:22:44 -04:00
|
|
|
envlist = py37, py38, py39, py310, py311
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
[gh-actions]
|
|
|
|
python =
|
2024-04-01 13:22:44 -04:00
|
|
|
3.7: py37
|
2020-12-05 20:20:38 -08:00
|
|
|
3.8: py38
|
|
|
|
3.9: py39
|
2022-08-31 18:30:45 -07:00
|
|
|
3.10: py310
|
2024-03-28 14:48:08 -04:00
|
|
|
3.11: py311
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
[testenv]
|
2022-08-31 18:30:45 -07:00
|
|
|
setenv = PYWB_NO_VERIFY_SSL = 1
|
2023-03-26 16:12:13 -04:00
|
|
|
passenv = *
|
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 =
|
2024-03-28 16:37:28 -04:00
|
|
|
pytest --cov-config .coveragerc --cov pywb -v --doctest-modules ./pywb/ tests/
|
2020-12-05 20:20:38 -08:00
|
|
|
|
|
|
|
|