From 124f8b9f6b024709a3304f22f7b137cd24128abf Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 20 Dec 2011 03:06:35 +0000 Subject: [PATCH] Tests now look for elements.xml in the source tree. --- test_problems/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_problems/SConscript b/test_problems/SConscript index 68e337c38..396a1a763 100644 --- a/test_problems/SConscript +++ b/test_problems/SConscript @@ -3,7 +3,8 @@ from buildutils import * Import('env','buildTargets','installTargets') localenv = env.Clone() -os.environ['PYTHONPATH'] = pjoin(os.getcwd(), '..','Cantera','python') +os.environ['PYTHONPATH'] = pjoin(os.getcwd(), '..', 'Cantera', 'python') +os.environ['CANTERA_DATA'] = pjoin(os.getcwd(), '..', 'data', 'inputs') class Test(object): def __init__(self, subdir, testName, programName, blessedName, **kwargs):