Skip to content

Commit

Permalink
add fallback test for seq split
Browse files Browse the repository at this point in the history
  • Loading branch information
jveitchmichaelis committed Sep 19, 2021
1 parent 13de2fc commit 5c7177a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_seq_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ def test_process_no_mmap(self):
self.sp.use_mmap = False
self.sp.process(self.test_data_path)

def test_process_with_wh(self):
self.sp = Splitter(self.output_folder, width=640, height=512)
self.sp.use_mmap = False
self.sp.process(self.test_data_path)

def test_process_seq_no_split(self):
self.sp = Splitter(self.output_folder)

Expand Down

0 comments on commit 5c7177a

Please sign in to comment.