tests: Disable memoryerror.py test, since it fails on travis.
Would be good to test this, but need to find a way to optionally not running it when on travis.
This commit is contained in:
parent
48aaa27c6a
commit
256b319d56
@ -1,6 +1,11 @@
|
||||
l = list(range(10000))
|
||||
try:
|
||||
100000000 * l
|
||||
except MemoryError:
|
||||
print('MemoryError')
|
||||
print(len(l), l[0], l[-1])
|
||||
# this test for MemoryError can be difficult to reproduce
|
||||
# on different machine configurations (notably Travis CI)
|
||||
# so we disable it
|
||||
# TODO is there a way of testing that we are on Travis CI?
|
||||
if False:
|
||||
l = list(range(10000))
|
||||
try:
|
||||
100000000 * l
|
||||
except MemoryError:
|
||||
print('MemoryError')
|
||||
print(len(l), l[0], l[-1])
|
||||
|
Loading…
x
Reference in New Issue
Block a user