diff options
author | Damien George <damien.p.george@gmail.com> | 2015-12-08 21:39:21 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-12-08 21:39:21 +0000 |
commit | 0891cf7d2d6bfe1d3daf625213ddc99b78102f1e (patch) | |
tree | 5d0ee07b508c10742ad3eec9211a88455a9de77a | |
parent | 33ac0fd09f15377f571c3d2455802cf7a8ac09a8 (diff) | |
download | micropython-0891cf7d2d6bfe1d3daf625213ddc99b78102f1e.tar.gz micropython-0891cf7d2d6bfe1d3daf625213ddc99b78102f1e.zip |
tests: Disable for_range.py test for native emitter (it requires yield).
-rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index e30ef104f9..3154324398 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -237,6 +237,7 @@ def run_tests(pyb, tests, args): skip_tests.add('basics/del_deref.py') # requires checking for unbound local skip_tests.add('basics/del_local.py') # requires checking for unbound local skip_tests.add('basics/exception_chain.py') # raise from is not supported + skip_tests.add('basics/for_range.py') # requires yield_value skip_tests.add('basics/try_finally_loops.py') # requires proper try finally code skip_tests.add('basics/try_finally_return.py') # requires proper try finally code skip_tests.add('basics/unboundlocal.py') # requires checking for unbound local |