From 8a8926849f7513139594c99b9acff5c252d6e6c8 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 20 Dec 2013 19:21:41 +0000 Subject: [PATCH] [SCons] Fix running the Python 3 test suite --- test/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SConscript b/test/SConscript index a46b8b838..99725525f 100644 --- a/test/SConscript +++ b/test/SConscript @@ -169,7 +169,7 @@ def make_python_tests(version): pyTest = addTestScript( name, 'python', 'runCythonTests.py', args=subset, - interpreter='$python_cmd', + interpreter='$python_cmd' if version == 2 else '$python3_cmd', dependencies=(localenv['python%i_module' % version] + localenv['python%i_extension' % version] + mglob(localenv, test_root, 'py')),