Fixed SCons aliases for Python and Matlab unit tests

This commit is contained in:
Ray Speth
2012-04-12 21:35:32 +00:00
parent 16390cc547
commit e99bd87586

View File

@@ -130,11 +130,11 @@ if localenv['python_package'] == 'full':
interpreter=sys.executable,
dependencies=['testSolution.py', 'testReactors.py',
localenv['python_module']])
localenv.Alias('python', pyTest)
localenv.Alias('test-python', pyTest)
env['testNames'].append('python')
if localenv['matlab_toolbox'] == 'y':
matlabTest = addMatlabTest('runCanteraTests.m',
dependencies=mglob(localenv, 'matlab', 'm'))
localenv.Alias('matlab', matlabTest)
localenv.Alias('test-matlab', matlabTest)
env['testNames'].append('matlab')