feat/tests #7

Merged
Fabel merged 3 commits from feat/tests into develop 2025-03-27 16:19:16 +00:00
3 changed files with 17 additions and 0 deletions
Showing only changes of commit 9079dbd6bb - Show all commits

10
.coveragerc Normal file
View File

@ -0,0 +1,10 @@
[run]
branch = True
source = src
omit =
*/tests/*
*/migrations/*
[report]
show_missing = True
fail_under = 80

4
MANIFEST.in Normal file
View File

@ -0,0 +1,4 @@
include LICENSE
include README.md
include requirements.txt
recursive-include src/aiia *

3
pytest.ini Normal file
View File

@ -0,0 +1,3 @@
[pytest]
testpaths = tests/
python_files = test_*.py