created pytest.ini, added test for waybackpy/availability_api.py, new exceptions all of which inherit from the main WaybackError and created requirements-dev.txt

This commit is contained in:
Akash Mahanty
2022-01-23 01:29:07 +05:30
parent 79901ba968
commit 1bacd73002
5 changed files with 152 additions and 4 deletions

11
pytest.ini Normal file
View File

@@ -0,0 +1,11 @@
[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