Revert "Add -bb for pytest python invocations"

This reverts commit 285cf105f0.

This is currently blocked by
https://github.com/HypothesisWorks/hypothesis-python/pull/350
This commit is contained in:
Florian Bruhin 2016-07-28 09:10:25 +02:00
parent 016c13a998
commit 243ba02f5f

View File

@ -37,8 +37,7 @@ if __name__ == '__main__':
pass
try:
subprocess.check_call([sys.executable, '-bb', '-m', 'pytest'] +
sys.argv[1:])
subprocess.check_call([sys.executable, '-m', 'pytest'] + sys.argv[1:])
except subprocess.CalledProcessError as exc:
is_segfault = exc.returncode in [128 + signal.SIGSEGV, -signal.SIGSEGV]
if is_segfault and os.path.exists(pytest_status_file):