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