From 0fd5f1428872a64cd784e04316a5c1ffbc05744e Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 1 Nov 2014 00:13:41 +0000 Subject: [PATCH] [SCons] Rename 'cython' test suite to 'python' Since the old Python module is gone, we don't need this one to have a different name. --- test/SConscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/SConscript b/test/SConscript index b3af8f5a0..2974a0500 100644 --- a/test/SConscript +++ b/test/SConscript @@ -225,11 +225,11 @@ for f in mglob(localenv, test_root, '^test_*.py'): python_subtests.append(f.name[5:-3]) def make_python_tests(version): - # Create test aliases for individual test modules (e.g. test-cython2-thermo; + # Create test aliases for individual test modules (e.g. test-python2-thermo; # not run as part of the main suite) and a single test runner with all the - # tests (test-cython2) for the main suite. + # tests (test-python2) for the main suite. for subset in python_subtests: - name = 'cython%i-' %version + subset if subset else 'cython%i' % version + name = 'python%i-' %version + subset if subset else 'python%i' % version pyTest = addPythonTest( name, 'python', 'runCythonTests.py', args=subset,