diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:42:45 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:42:45 +0100 |
commit | 031278f661e5d285c56359e355a96161bf6e1a9f (patch) | |
tree | 28bbc709418b0e81b941f8ad014ed2a5aab86165 /tests | |
parent | 9724a0538b82109992bfe9322008eab7f62064b7 (diff) |
unix: Allow to cat a script into stdin from the command line.
See issue #1306.
Diffstat (limited to '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 36d9258cf..956036bd1 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -133,6 +133,10 @@ def run_tests(pyb, tests, args): if native == b'CRASH': skip_native = True + # These tests no longer work; TODO change them or remove them + skip_tests.add('cmdline/repl_basic.py') + skip_tests.add('cmdline/repl_cont.py') + # Some tests shouldn't be run under Travis CI if os.getenv('TRAVIS') == 'true': skip_tests.add('basics/memoryerror.py') |