From bbf665d4fff0ab02c111c29dec3ac4b5be3ff6c2 Mon Sep 17 00:00:00 2001 From: Pooria Date: Wed, 4 Jun 2025 11:47:27 -0700 Subject: [PATCH] fix pytest paths --- backend/app/apis/__init__.py | 0 backend/app/apis/stock_info.py | 1 + pytest.ini | 4 ++-- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 backend/app/apis/__init__.py create mode 100644 backend/app/apis/stock_info.py diff --git a/backend/app/apis/__init__.py b/backend/app/apis/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/apis/stock_info.py b/backend/app/apis/stock_info.py new file mode 100644 index 0000000..44feb0d --- /dev/null +++ b/backend/app/apis/stock_info.py @@ -0,0 +1 @@ +from ..services.stock_info import StockInfo diff --git a/pytest.ini b/pytest.ini index 4584de7..ecb11be 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,3 @@ [pytest] -testpaths = tests -pythonpath = . +testpaths = test +pythonpath = backend