Skip to content

Commit

Permalink
add parents
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Apr 28, 2024
1 parent 85cc954 commit d5a041e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
version = f.read()

# Instantiate the testing configuration file from the base file `base_test_config.json`
BASE_CONFIG_FILE_PATH = Path(__file__) / "base_test_config.json"
TESTING_CONFIG_FILE_PATH = Path(__file__) / "tests" / "testing_config.json"
BASE_CONFIG_FILE_PATH = Path(__file__).parent / "base_test_config.json"
TESTING_CONFIG_FILE_PATH = Path(__file__).parent / "tests" / "testing_config.json"
if not TESTING_CONFIG_FILE_PATH.exists():
copy(src=str(BASE_CONFIG_FILE_PATH), dst=str(TESTING_CONFIG_FILE_PATH))

Expand Down

0 comments on commit d5a041e

Please sign in to comment.