common voice preprocessor and tests, small refactoring within tests

This commit is contained in:
Thomas Werkmeister
2019-04-25 11:35:18 +02:00
parent 8b1da591fc
commit d1a7ad545d
5 changed files with 84 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
import os
def get_tests_path():
"""Returns the path to the test directory."""
return os.path.dirname(os.path.realpath(__file__))
def get_tests_input_path():
"""Returns the path to the test data directory."""
return os.path.join(get_tests_path(), "inputs")
def get_tests_output_path():
"""Returns the path to the directory for test outputs."""
return os.path.join(get_tests_path(), "outputs")