diff options
Diffstat (limited to 'tests/run-tests')
| -rwxr-xr-x | tests/run-tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 21a0039e4..34f855d08 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -33,6 +33,10 @@ def run_tests(pyb, tests, args): if os.getenv('TRAVIS') == 'true': skip_tests.add('basics/memoryerror.py') + # Some tests shouldn't be run on pyboard + if pyb is not None: + skip_tests.add('float/float_divmod.py') # tested by float/float_divmod_relaxed.py instead + # Some tests are known to fail with native emitter # Remove them from the below when they work if args.emit == 'native': |
