Use constants value for test config dir path

explicit_write_pps_on_exit
algorandpa 2023-02-15 19:48:39 -05:00 committed by jaredgoldman
parent 3bc54e308f
commit db2e2ed78f
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@ from typing import Optional
from pathlib import Path
from bidict import bidict
import toml
from piker.testing import TEST_CONFIG_DIR_PATH
from .log import get_logger
log = get_logger('broker-config')
@ -78,7 +78,7 @@ def get_app_dir(app_name, roaming=True, force_posix=False):
# within the tractor runtimes and store testing config data
# outside of the users filesystem
if "pytest" in sys.modules:
app_name += '/_testing'
app_name += TEST_CONFIG_DIR_PATH
# if WIN:
if platform.system() == 'Windows':

View File

@ -0,0 +1 @@
TEST_CONFIG_DIR_PATH = '_testing'