Skip to content

Commit

Permalink
Minor update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasstolker committed Jan 12, 2024
1 parent 71028f2 commit f3f969a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ coverage:
coverage report -m

test:
pytest --cov=pycrires/ --cov-report=xml
pytest -s --cov=pycrires/ --cov-report=xml

clean:
find . -name '*.pyc' -exec rm -f {} +
Expand Down
3 changes: 0 additions & 3 deletions tests/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,6 @@ def test_obs_nodding(self) -> None:
if shutil.which("esorex") is None:
with pytest.raises(RuntimeError) as error:
self.pipeline.obs_nodding(verbose=False, correct_bad_pixels=True, extraction_required=True)
print(str(error.value))

# assert str(error.value) == "Cannot run obs_nodding: there are no SCIENCE frames"

else:
self.pipeline.obs_nodding(verbose=False, correct_bad_pixels=True, extraction_required=True)
Expand Down

0 comments on commit f3f969a

Please sign in to comment.