From 802af306acfb91bb00168b5f4b8e1677ddef6468 Mon Sep 17 00:00:00 2001 From: jaredgoldman Date: Tue, 28 Feb 2023 13:01:42 -0500 Subject: [PATCH] Add specific location of _testing dir in delete_testing_dir fixture --- tests/conftest.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index beb649f3..3e8f34a2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -171,11 +171,14 @@ def open_test_pikerd_and_ems( open_test_pikerd ) -@pytest.fixture(scope='session') +@pytest.fixture(scope='session') def delete_testing_dir(): - '''This fixture removes the temp directory + ''' + This fixture removes the temp directory used for storing all config/ledger/pp data - created during testing sessions + created during testing sessions. During test runs + this file can be found in .config/piker/_testing + ''' yield app_dir = Path(config.get_app_dir('piker')).resolve()