We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c13d0b3 commit e8ecca2Copy full SHA for e8ecca2
2 files changed
.travis.yml
@@ -17,6 +17,8 @@ script:
17
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
18
19
after_failure:
20
+ - pwd
21
+ - echo 'test'
22
- cat tests/memoryerror.py.exp
- - cat tests/memoryerror.py.out
23
+ - (cat tests/memoryerror.py.out)
24
- cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done
tests/basics/memoryerror.py
@@ -1,8 +1,4 @@
1
l = list(range(10000))
2
-try:
3
- hex(1)
4
-except NameError:
5
- print("NameError")
6
try:
7
100000000 * l
8
except MemoryError:
0 commit comments