We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10f789d commit dd6f199Copy full SHA for dd6f199
unicorn_approvals/pyproject.toml
@@ -29,3 +29,13 @@ dev = [
29
[tool.setuptools]
30
package-dir = {"approvals_service" = "src"}
31
packages = ["approvals_service"]
32
+
33
+[tool.pytest.ini_options]
34
+minversion = "7.0"
35
+addopts = "-ra -vv -W ignore::UserWarning"
36
+testpaths = ["tests/unit", "tests/integration"]
37
+pythonpath = ["."]
38
39
+[build-system]
40
+requires = ["uv_build"]
41
+build-backend = "uv_build"
unicorn_approvals/tests/unit/helper.py
@@ -6,7 +6,7 @@
6
7
TABLE_NAME = "table1"
8
EVENTBUS_NAME = "test-eventbridge"
9
-EVENTS_DIR = Path(__file__).parent / "events"
+EVENTS_DIR = Path(__file__).parent.parent / "events"
10
11
12
def load_event(filename):
0 commit comments