Add get_tests_data_path

This commit is contained in:
Eren Gölge 2022-01-12 11:37:02 +00:00
parent 7b49a4aa2b
commit d0eb3e4ef2
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@ def get_tests_input_path():
return os.path.join(get_tests_path(), "inputs")
def get_tests_data_path():
"""Returns the path to the test data directory."""
return os.path.join(get_tests_path(), "data")
def get_tests_output_path():
"""Returns the path to the directory for test outputs."""
return os.path.join(get_tests_path(), "outputs")