diff options
Diffstat (limited to '.svnt/conf')
-rw-r--r-- | .svnt/conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.svnt/conf b/.svnt/conf new file mode 100644 index 0000000..255a4ac --- /dev/null +++ b/.svnt/conf @@ -0,0 +1,18 @@ +import os +import sys + +python = os.environ.get('PYTHON', sys.executable) + +cmd = '"%(python)s" runtest.py -q --noqmtest %%s' % locals() + +test_inputs = [ + 'src/*.py', + 'QMTest/*.py', +] + +tests = ( + ('src/*Tests.py', cmd), + ('test/*.py', cmd), +) + +valid_regression_results = [0, 2] |