diff options
author | John Wiegley <johnw@newartisans.com> | 2012-04-15 01:17:01 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-04-15 01:17:01 -0500 |
commit | ee641f353c9a2216533800464d26afe86f1b028e (patch) | |
tree | 2f7b290d5e6ea5c395ff294d4c911a4f942fe6f6 /test/RegressTests.py | |
parent | 1ad826c2bccabad844156a181735dd960f87d174 (diff) | |
download | fork-ledger-ee641f353c9a2216533800464d26afe86f1b028e.tar.gz fork-ledger-ee641f353c9a2216533800464d26afe86f1b028e.tar.bz2 fork-ledger-ee641f353c9a2216533800464d26afe86f1b028e.zip |
Resolve some issues with proof builds
Diffstat (limited to 'test/RegressTests.py')
-rwxr-xr-x | test/RegressTests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/RegressTests.py b/test/RegressTests.py index a7d51ada..792c2d3e 100755 --- a/test/RegressTests.py +++ b/test/RegressTests.py @@ -184,7 +184,8 @@ if __name__ == '__main__': tests = [os.path.join(tests, x) for x in os.listdir(tests) if (x.endswith('.test') and - (not '_py.test' in x or harness.python))] + (not '_py.test' in x or (harness.python and + not harness.verify)))] if pool: pool.map(do_test, tests, 1) else: |