We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff63657 + 1f19209 commit 4984775Copy full SHA for 4984775
test/BowTieBuilder/test_btb.py
@@ -1,19 +1,13 @@
1
import shutil
2
-import sys
3
from pathlib import Path
4
5
import pytest
6
7
import spras.config.config as config
+from spras.btb import BowTieBuilder as BTB
8
9
config.init_from_file("config/config.yaml")
10
11
-# TODO consider refactoring to simplify the import
12
-# Modify the path because of the - in the directory
13
-SPRAS_ROOT = Path(__file__).parent.parent.parent.absolute()
14
-sys.path.append(str(Path(SPRAS_ROOT, 'docker-wrappers', 'BowTieBuilder')))
15
-from spras.btb import BowTieBuilder as BTB
16
-
17
TEST_DIR = Path('test', 'BowTieBuilder/')
18
OUT_FILE_DEFAULT = Path(TEST_DIR, 'output', 'raw-pathway.txt')
19
0 commit comments