Skip to content

Commit

Permalink
Fixed test file path for unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardBruskiewich committed Jun 20, 2023
1 parent ad7dc14 commit b167a6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from sys import stderr
from os.path import abspath, dirname
from os.path import abspath, dirname, sep

TESTS_DIRECTORY = abspath(dirname(__file__))
print(f"Test Directory: {TESTS_DIRECTORY}", file=stderr)

SAMPLE_SCHEMA_VERSION = "v3.2.1-beta5"
SAMPLE_SCHEMA_FILE = f"{TESTS_DIRECTORY}/test_data/sample_trapi_schema_{SAMPLE_SCHEMA_VERSION}.yaml"
SAMPLE_SCHEMA_FILE = f"{TESTS_DIRECTORY}{sep}test_data{sep}sample_trapi_schema_{SAMPLE_SCHEMA_VERSION}.yaml"

LATEST_TRAPI_VERSION: str = "v1.4.0-beta4"

0 comments on commit b167a6f

Please sign in to comment.