fix: move pytest.ini into setup.cfg

This commit is contained in:
eggplants
2022-02-04 04:48:40 +09:00
parent 18b8992ec4
commit 59c6224935
2 changed files with 12 additions and 11 deletions

View File

@@ -1,11 +0,0 @@
[pytest]
addopts =
# show summary of all tests that did not pass
-ra
# enable all warnings
-Wd
# coverage and html report
--cov=waybackpy
--cov-report=html
testpaths =
tests

View File

@@ -71,3 +71,15 @@ python_version = 3.9
show_error_codes = True
pretty = True
strict = True
[tool:pytest]
addopts =
# show summary of all tests that did not pass
-ra
# enable all warnings
-Wd
# coverage and html report
--cov=waybackpy
--cov-report=html
testpaths =
tests