Skip to content

Commit

Permalink
PPF-502: no longer test on win
Browse files Browse the repository at this point in the history
  • Loading branch information
chinapandaman committed Feb 16, 2024
1 parent 6354f8f commit 778225e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/test_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ def test_fill_signature(pdf_samples, image_samples, request):

expected = f.read()

assert len(obj.read()) == len(expected)
assert obj.read() == expected
if os.name != "nt":
assert len(obj.read()) == len(expected)
assert obj.read() == expected


def test_signature_schema(pdf_samples):
Expand Down Expand Up @@ -54,5 +55,6 @@ def test_fill_signature_overlap(pdf_samples, image_samples, request):

expected = f.read()

assert len(obj.read()) == len(expected)
assert obj.read() == expected
if os.name != "nt":
assert len(obj.read()) == len(expected)
assert obj.read() == expected

0 comments on commit 778225e

Please sign in to comment.