diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-14 10:32:34 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-14 10:35:05 +0200 |
commit | 8d11fc0bc4c0b9d569a343a785bf079d6441eb16 (patch) | |
tree | f915b8857e3afc37b40b432078d0d203b40d57c6 | |
parent | 46b35356e1727365dd5a33fcf3a722fda82c8b08 (diff) |
tests/run-tests: minimal: Exclude recently added subclass_native_init.py.
It relies on MICROPY_CPYTHON_COMPAT being defined.
-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 45d988b25..35b609612 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -313,6 +313,7 @@ def run_tests(pyb, tests, args, base_path="."): skip_tests.add('misc/rge_sm.py') # too large elif args.target == 'minimal': skip_tests.add('basics/class_inplace_op.py') # all special methods not supported + skip_tests.add('basics/subclass_native_init.py')# native subclassing corner cases not support skip_tests.add('misc/rge_sm.py') # too large skip_tests.add('micropython/opt_level.py') # don't assume line numbers are stored skip_tests.add('float/float_parse.py') # minor parsing artifacts with 32-bit floats |