From 68b43c59beca4c018bccdb63fcb1bb55195201cb Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 21 Feb 2015 18:53:32 +0300 Subject: [PATCH] Disable pdb PyPy tests completely They currently fail for the reason that does not seem related to powerline (though this problem did not occur before porting tests to pexpect, so this should be somewhat related (somewhat: PyPy fails on code `return br'\u%04x' % ord(c)` which is no a valid Python code (`%` can no longer be used with `bytes()` obects), the whole situation only means that before using pexpect bug in PyPy was not hit)). --- tests/test_shells/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_shells/test.sh b/tests/test_shells/test.sh index 60347387..8d7bef16 100755 --- a/tests/test_shells/test.sh +++ b/tests/test_shells/test.sh @@ -426,7 +426,7 @@ if ( test "x${ONLY_SHELL}" = "x" || test "x${ONLY_SHELL}" = "xzsh" ) \ fi if test "x${ONLY_SHELL}" = "x" || test "x${ONLY_SHELL}" = "xpdb" ; then - if ! ( test "$PYTHON_IMPLEMENTATION" = "PyPy" && test "$PYTHON_VERSION_MAJOR" = 2 ) ; then + if test "$PYTHON_IMPLEMENTATION" != "PyPy" ; then if test "x${ONLY_TEST_TYPE}" = "x" || test "x${ONLY_TEST_TYPE}" = "xsubclass" ; then echo "> pdb subclass" if ! run_test subclass python $PDB_PYTHON "$PWD/tests/test_shells/pdb-main.py" ; then