[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.
This commit is contained in:
Ray Speth 2014-11-01 00:13:41 +00:00
parent fbe8a7cd3f
commit 0fd5f14288

View file

@ -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,