From a32c33da10da63785c8c6164b9d653bb845d92b4 Mon Sep 17 00:00:00 2001 From: veenstrajelmer Date: Mon, 10 Jun 2024 15:45:41 +0200 Subject: [PATCH] removed scope from conftest fixtures --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 702821d..15292f0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -9,7 +9,7 @@ @pytest.mark.timeout(60) # useful in case of ddl failure -@pytest.fixture(scope="session") +@pytest.fixture def dir_meas_timeseries(tmp_path): dir_meas_timeseries = tmp_path start_date = pd.Timestamp(2010,1,1, tz="UTC+01:00") @@ -23,7 +23,7 @@ def dir_meas_timeseries(tmp_path): @pytest.mark.timeout(60) # useful in case of ddl failure -@pytest.fixture(scope="session") +@pytest.fixture def dir_meas_extremes(tmp_path): dir_meas_extremes = tmp_path start_date = pd.Timestamp(2010,1,1, tz="UTC+01:00")