Skip to content

Commit

Permalink
python: re-enable test_write_read_cycle_numpy on Windows
Browse files Browse the repository at this point in the history
With the current version 19.42.34435.0, it seems to work again. This
'fixes' zxing-cpp#735.
  • Loading branch information
axxel committed Jan 7, 2025
1 parent 82806f5 commit dff7da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/python/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def test_write_read_cycle_buffer(self):

self.check_res(zxingcpp.read_barcode(img), format, text)

@unittest.skipIf(not has_numpy or platform.system() == "Windows", "need numpy for read/write tests")
@unittest.skipIf(not has_numpy, "need numpy for read/write tests")
def test_write_read_cycle_numpy(self):
import numpy as np
format = BF.QRCode
Expand Down

0 comments on commit dff7da1

Please sign in to comment.