Skip to content

Commit 4c4ac47

Browse files
author
danameyer
committed
add missing stop_on_fail parameter to fix test. Refs #5.
1 parent 32d9497 commit 4c4ac47

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/unit_tests/preprocess_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ def test_preprocess_with_github(self):
3030
asyncio.run(self.preprocessor.preprocess())
3131

3232
def test_preprocess_crop_false(self):
33-
asyncio.run(self.preprocessor.preprocess_xml_file_list(self.xml_files, self.in_path, self.out_path))
33+
asyncio.run(self.preprocessor.preprocess_xml_file_list(self.xml_files,
34+
self.in_path,
35+
self.out_path,
36+
stop_on_fail=False))
3437

3538
def test_preprocess_crop_true(self):
3639
asyncio.run(self.preprocessor.preprocess_xml_file_list(self.xml_files,

0 commit comments

Comments
 (0)