mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Skip LargeMemoryNumpyTest on 32 bit systems
This commit is contained in:
parent
10da645ac6
commit
647f2e1771
|
@ -1,3 +1,6 @@
|
||||||
|
import sys
|
||||||
|
import unittest
|
||||||
|
|
||||||
from helper import *
|
from helper import *
|
||||||
|
|
||||||
# This test is not run automatically.
|
# This test is not run automatically.
|
||||||
|
@ -18,6 +21,7 @@ YDIM = 32769
|
||||||
XDIM = 48000
|
XDIM = 48000
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skipIf(sys.maxsize <= 2**32, "requires 64 bit system")
|
||||||
class LargeMemoryNumpyTest(PillowTestCase):
|
class LargeMemoryNumpyTest(PillowTestCase):
|
||||||
|
|
||||||
def _write_png(self, xdim, ydim):
|
def _write_png(self, xdim, ydim):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user