Browse Source

tests/run-tests: minimal: Exclude recently added subclass_native_init.py.

It relies on MICROPY_CPYTHON_COMPAT being defined.
pull/3422/merge
Paul Sokolovsky 7 years ago
parent
commit
8d11fc0bc4
  1. 1
      tests/run-tests

1
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

Loading…
Cancel
Save