Skip to content

Commit bcb219b

Browse files
committed
fix: paths
1 parent 06a211e commit bcb219b

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

test/algorithms/AllPairs/test_ap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# like setting hash length behaviors, container registries, etc.
1313
config.init_from_file("config/config.yaml")
1414

15-
TEST_DIR = Path('test/AllPairs/')
15+
TEST_DIR = Path('test/algorithms/AllPairs/')
1616
OUT_DIR = TEST_DIR / 'output'
1717
EXPECTED_DIR = TEST_DIR / 'expected'
1818

test/algorithms/BowTieBuilder/test_btb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
# TODO consider refactoring to simplify the import
1212
# Modify the path because of the - in the directory
13-
SPRAS_ROOT = Path(__file__).parent.parent.parent.absolute()
13+
SPRAS_ROOT = Path(__file__).parent.parent.parent.parent.absolute()
1414
sys.path.append(str(Path(SPRAS_ROOT, 'docker-wrappers', 'BowTieBuilder')))
1515
from spras.btb import BowTieBuilder as BTB
1616

17-
TEST_DIR = Path('test', 'BowTieBuilder/')
17+
TEST_DIR = Path('test', 'algorithms', 'BowTieBuilder/')
1818
OUT_FILE_DEFAULT = Path(TEST_DIR, 'output', 'raw-pathway.txt')
1919

2020

test/algorithms/MEO/test_meo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
config.init_from_file("config/config.yaml")
1010

11-
TEST_DIR = 'test/MEO/'
11+
TEST_DIR = 'test/algorithms/MEO/'
1212
OUT_FILE = TEST_DIR + 'output/edges.txt'
1313

1414

test/algorithms/MinCostFlow/test_mcf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
config.init_from_file("config/config.yaml")
1010

11-
TEST_DIR = 'test/MinCostFlow/'
11+
TEST_DIR = 'test/algorithms/MinCostFlow/'
1212
OUT_FILE = TEST_DIR + 'output/mincostflow-output.txt'
1313

1414

test/algorithms/OmicsIntegrator1/test_oi1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
config.init_from_file("config/config.yaml")
1010

11-
TEST_DIR = 'test/OmicsIntegrator1/'
11+
TEST_DIR = 'test/algorithms/OmicsIntegrator1/'
1212
OUT_FILE = TEST_DIR+'output/test_optimalForest.sif'
1313

1414

test/algorithms/OmicsIntegrator2/test_oi2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
config.init_from_file("config/config.yaml")
1010

11-
TEST_DIR = Path('test', 'OmicsIntegrator2')
11+
TEST_DIR = Path('test', 'algorithms', 'OmicsIntegrator2')
1212
OUT_FILE = TEST_DIR / 'output' / 'test.tsv'
1313

1414
EDGE_FILE = TEST_DIR / 'input' / 'simple' / 'oi2-edges.txt'

test/algorithms/RWR/test_RWR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
config.init_from_file("config/config.yaml")
1111

12-
TEST_DIR = Path('test', 'RWR/')
12+
TEST_DIR = Path('test', 'algorithms', 'RWR/')
1313
OUT_FILE = Path(TEST_DIR, 'output', 'rwr-output.txt')
1414

1515

test/algorithms/ST_RWR/test_STRWR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
config.init_from_file("config/config.yaml")
1111

12-
TEST_DIR = Path('test', 'ST_RWR')
12+
TEST_DIR = Path('test', 'algorithms', 'ST_RWR')
1313
OUT_FILE = Path(TEST_DIR, 'output', 'strwr-output.txt')
1414
EXPECTED_OUTPUT = Path(TEST_DIR, 'expected_output', 'strwr-output.txt')
1515

0 commit comments

Comments
 (0)