Skip to content
Snippets Groups Projects
Commit c2319bdb authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

now that ngas_ingest relies on capo, don't assert on it.

parent d827db2b
No related branches found
No related tags found
3 merge requests!1571catch 2.8.2.3 up with main,!15462.8.2.1 patch development to main,!1544make sure observation manifest creation picks up all types of log files
Pipeline #13187 passed
......@@ -88,7 +88,7 @@ def test_filters_cal_input_files(ingest_path: Path):
assert manifest.locator == locator
params = manifest.parameters
assert params.reingest is False and params.ngas_ingest is True
assert params.reingest is False
assert not hasattr(params, "calibrate")
input_group = manifest.input_group
......@@ -338,8 +338,6 @@ def test_evla_cal_manifest_matches_example(ingest_path: Path):
expected_reingest = expected_params["reingest"]
assert actual_params["reingest"] == expected_reingest
expected_ngas_ingest = expected_params["ngas_ingest"]
assert actual_params["ngas_ingest"] == expected_ngas_ingest
assert "calibrate" not in actual_params.keys()
assert manifest.input_group.to_dict() == expected_json["input_group"]
......@@ -442,8 +440,6 @@ def test_evla_cal_final_manifest_matches_example(ingest_path: Path):
expected_reingest = expected_params["reingest"]
assert actual_params["reingest"] == expected_reingest
expected_ngas_ingest = expected_params["ngas_ingest"]
assert actual_params["ngas_ingest"] == expected_ngas_ingest
assert "calibrate" not in actual_params.keys()
assert manifest.input_group.to_dict() == expected_json["input_group"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment