From 9079dbd6bbbac8846a391707736fc0a2f0924480 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Thu, 27 Mar 2025 17:16:00 +0100 Subject: [PATCH] added testing files --- .coveragerc | 10 ++++++++++ MANIFEST.in | 4 ++++ pytest.ini | 3 +++ 3 files changed, 17 insertions(+) create mode 100644 .coveragerc create mode 100644 MANIFEST.in create mode 100644 pytest.ini diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..7294ebb --- /dev/null +++ b/.coveragerc @@ -0,0 +1,10 @@ +[run] +branch = True +source = src +omit = + */tests/* + */migrations/* + +[report] +show_missing = True +fail_under = 80 \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..6925c8f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include LICENSE +include README.md +include requirements.txt +recursive-include src/aiia * \ No newline at end of file diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..fa7df11 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +testpaths = tests/ +python_files = test_*.py \ No newline at end of file