From 243ba02f5f6adf59d331a510e6f3605903b3ab67 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 28 Jul 2016 09:10:25 +0200 Subject: [PATCH] Revert "Add -bb for pytest python invocations" This reverts commit 285cf105f002deb0b59ab68f996798bb346f6fb9. This is currently blocked by https://github.com/HypothesisWorks/hypothesis-python/pull/350 --- scripts/dev/run_pytest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/dev/run_pytest.py b/scripts/dev/run_pytest.py index 9af53409a..eddd9ed42 100644 --- a/scripts/dev/run_pytest.py +++ b/scripts/dev/run_pytest.py @@ -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):