diff --git a/tests/test_distribution_to_distribution.py b/tests/test_distribution_to_distribution.py new file mode 100644 index 0000000..9dcb1f0 --- /dev/null +++ b/tests/test_distribution_to_distribution.py @@ -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) \ No newline at end of file diff --git a/tests/test_map_to_map.py b/tests/test_map_to_map.py index 7744af5..d470e21 100644 --- a/tests/test_map_to_map.py +++ b/tests/test_map_to_map.py @@ -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) \ No newline at end of file