diff options
| author | Damien George <damien@micropython.org> | 2022-06-25 00:05:39 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-06-25 00:22:15 +1000 |
| commit | e22b7fb4afbf62a9ca3162539c2d0236aefd8945 (patch) | |
| tree | 8bbf856f1dd860fb151bc5c0f331b08b7fcbd169 /tests/run-tests.py | |
| parent | 268ec1e3eb818c92f2ad0015902afef4c4c59ba5 (diff) | |
py/objfun: Support function attributes on native functions.
Native functions can just reuse the bytecode function attribute code.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
| -rwxr-xr-x | tests/run-tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 7377e8ae2..2d6dbaaf1 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -603,6 +603,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): 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/fun_name.py") # requires proper names for native functions skip_tests.add("basics/scope_implicit.py") # requires checking for unbound local skip_tests.add("basics/sys_tracebacklimit.py") # requires traceback info skip_tests.add("basics/try_finally_return2.py") # requires raise_varargs |
