We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 016eebb commit 85625f0Copy full SHA for 85625f0
ccdproc/tests/test_combiner.py
@@ -495,8 +495,13 @@ def test_combine_image_file_collection_input(tmp_path):
495
496
comb_ccds = combine(ifc.ccds(), method="average")
497
498
+ comb_string = combine(
499
+ ",".join(ifc.files_filtered(include_path=True)), method="average"
500
+ )
501
+
502
np.testing.assert_allclose(ccd.data, comb_files.data)
503
np.testing.assert_allclose(ccd.data, comb_ccds.data)
504
+ np.testing.assert_allclose(ccd.data, comb_string.data)
505
506
with pytest.raises(FileNotFoundError):
507
# This should fail because the test is not running in the
0 commit comments