diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-11 15:03:29 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-11 15:03:29 +0200 |
commit | 66a6caa3075ae29246cebaeed8bfe3b4ea5872cb (patch) | |
tree | 0c9311a9b77702dcecedda6ff3b53eddde09ca2f | |
parent | 5318cc028aef9eb3edd88b01cd0e5b43c378fd83 (diff) | |
download | micropython-66a6caa3075ae29246cebaeed8bfe3b4ea5872cb.tar.gz micropython-66a6caa3075ae29246cebaeed8bfe3b4ea5872cb.zip |
run-tests: Skip print_exception.py on TravisCI, as it irreproducibly fails.
TODO: Figure out what's wrong on Travis.
-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 fd41931d35..801fb897c6 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -60,6 +60,7 @@ def run_tests(pyb, tests, args): # Some tests shouldn't be run under Travis CI if os.getenv('TRAVIS') == 'true': skip_tests.add('basics/memoryerror.py') + skip_tests.add('misc/print_exception.py') # Some tests shouldn't be run on pyboard if pyb is not None: |