From 696e620468079e08c1bd0594fbf10a9af9fe8bb3 Mon Sep 17 00:00:00 2001 From: ming Date: Mon, 17 Jun 2024 16:34:52 -0400 Subject: [PATCH] fix path to the unit test data folder (#2201) --- tests/unit/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 8fed91739..17ebc20e1 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -35,7 +35,7 @@ load_dotenv() def pytest_configure(config): config.addinivalue_line("markers", "noclient: don't create a client for this test") - data_path = Path(__file__).parent.absolute() / "data" + data_path = Path(__file__).parent.parent.absolute() / "data" pytest.BASIC_EXAMPLE_PATH = data_path / "basic_example.json" pytest.COMPLEX_EXAMPLE_PATH = data_path / "complex_example.json"