From b3391cd57b92c12a108f6d3476cbd51c19f82b28 Mon Sep 17 00:00:00 2001 From: panduru-aadhithya Date: Sat, 28 Feb 2026 16:40:20 +0530 Subject: [PATCH] Add pytest configuration and initial helper_functions import test --- pytest.ini | 3 +++ test/test_helper_import.py | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 pytest.ini create mode 100644 test/test_helper_import.py diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..0fe907c --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +testpaths = test +pythonpath = src diff --git a/test/test_helper_import.py b/test/test_helper_import.py new file mode 100644 index 0000000..cc97c8b --- /dev/null +++ b/test/test_helper_import.py @@ -0,0 +1,10 @@ +import sys +import os + +# Ensure src directory is in path +sys.path.append(os.path.abspath("src")) + +import helper_functions + +def test_helper_functions_import(): + assert helper_functions is not None