Gracefully handle not finding the VC and/or SDK setup batch scripts.
[scons.git] / .svnt / conf
1 import os
2 import sys
3
4 python = os.environ.get('PYTHON', sys.executable)
5
6 build = [
7     '"%(python)s" bootstrap.py %%s' % locals()
8 ]
9
10 build_test_baseline = []
11
12 cmd = '"%(python)s" runtest.py -q --noqmtest %%s' % locals()
13
14 test_inputs = [
15     'src/*.py',
16     'QMTest/*.py',
17 ]
18
19 tests = (
20     ('src/*Tests.py', cmd),
21     ('test/*.py', cmd),
22 )
23
24 valid_regression_results = [0, 2]