Skip to content

Commit

Permalink
path to test config
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffwoollard committed Jun 20, 2024
1 parent 4e1573c commit 1beb216
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions tests/test_distribution_to_distribution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from omegaconf import OmegaConf
from cryo_challenge._commands import run_distribution2distribution_pipeline

args = OmegaConf.create({'config': 'tests/config_files/test_config_map_to_map_distance_matrix.yaml'})

def test_run_distribution2distribution_pipeline(args):
run_distribution2distribution_pipeline.main(args)
2 changes: 1 addition & 1 deletion tests/test_map_to_map.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from omegaconf import OmegaConf
from cryo_challenge._commands import run_map2map_pipeline

args = OmegaConf.create({'config': 'config_files/test_config_map_to_map_distance_matrix.yaml'})
args = OmegaConf.create({'config': 'tests/config_files/test_config_map_to_map_distance_matrix.yaml'})

def test_run_map2map_pipeline(args):
run_map2map_pipeline.main(args)

0 comments on commit 1beb216

Please sign in to comment.