From 04afdc478df7efb1b23f2dfc3b578a47a47086d2 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Wed, 7 May 2025 11:41:29 +0530 Subject: [PATCH] feat: add pytest config Add pytest.ini with pythonpath = . configuration to ensure modules are properly discovered when running tests. Also add empty __init__.py file to make the tests directory a proper Python package. --- tests/__init__.py | 0 tests/pytest.ini | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 tests/__init__.py create mode 100644 tests/pytest.ini diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/pytest.ini b/tests/pytest.ini new file mode 100644 index 000000000..03f586d41 --- /dev/null +++ b/tests/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +pythonpath = . \ No newline at end of file