diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-25 18:48:03 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-25 18:48:03 +0000 |
commit | 2f8c409a4f441d7ef8856d2bd4ef9467204bb418 (patch) | |
tree | 9db74e8bd819f5c5a4c3fb5c8308d289425bd8f6 /tools/tinytest-codegen.py | |
parent | 8788b131ecff3c2f203efbdb9f30942823981136 (diff) | |
download | micropython-2f8c409a4f441d7ef8856d2bd4ef9467204bb418.tar.gz micropython-2f8c409a4f441d7ef8856d2bd4ef9467204bb418.zip |
qemu-arm: Disable try_finally1.py test (it fails randomly on Travis).
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index e880cb083a..2a4d69d3f0 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -46,8 +46,10 @@ testgroup_member = ( ## XXX: may be we could have `--without <groups>` argument... # currently these tests are selected because they pass on qemu-arm +# basics/try_finally1.py passes on local machine but only passes 50% of the +# time on Travis CI; no idea why so we just disable it. test_dirs = ('basics', 'micropython', 'inlineasm') # 'float', 'import', 'io', 'misc') -exclude_tests = ('basics/builtin_override.py', 'basics/class_super_object.py', 'basics/memoryerror.py', 'micropython/heapalloc.py') +exclude_tests = ('basics/builtin_override.py', 'basics/class_super_object.py', 'basics/memoryerror.py', 'basics/try_finally1.py', 'micropython/heapalloc.py') output = [] |