00-sample.py 244 B

123456789101112
  1. import sys
  2. import pathlib
  3. test_file = pathlib.Path(__file__)
  4. test_file_directory = test_file.absolute().parent
  5. project_directory = test_file_directory.parent
  6. sys.path.append(str(project_directory))
  7. import assets
  8. ## Insert new test here ##