Skip to content

Commit

Permalink
test_run_suite does not work on other systems
Browse files Browse the repository at this point in the history
  • Loading branch information
JudithBernett committed Oct 28, 2024
1 parent e47577f commit 0abaf57
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_run_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ def test_run_suite(args):
args = Namespace(**args)
main(args)
assert os.listdir(temp_dir.name) == ["test_run"]
'''
(
evaluation_results,
evaluation_results_per_drug,
evaluation_results_per_cell_line,
true_vs_pred,
) = parse_results(path_to_results=f"{temp_dir.name}/{args.run_id}")
) = parse_results(path_to_results=os.path.join(temp_dir.name, args.run_id))
(
evaluation_results,
Expand All @@ -62,7 +63,7 @@ def test_run_suite(args):
evaluation_results_per_cell_line,
true_vs_pred,
)
'''
# TODO: needs fixing
assert len(evaluation_results.columns) == 22
assert len(evaluation_results_per_drug.columns) == 15
Expand Down

0 comments on commit 0abaf57

Please sign in to comment.