From 55f00b79065acef4f283d38aedc19d3b7e787f0d Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Sat, 15 Mar 2025 23:42:19 +0100 Subject: [PATCH] added pytest files --- .coveragerc | 10 ++++++++++ pytest.ini | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 .coveragerc 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/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