Skip to content

Commit 462d203

Browse files
author
Owen Jones
committed
Do not run xfail tests that time out in stage 3
We should create a flag to not run stage 3 and then use it in these tests (and others, no doubt)
1 parent 97199da commit 462d203

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

regression/OWASP/BenchmarkTest00430/test_BenchmarkTest00430.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import regression.utils as utils
66

77

8-
@pytest.mark.xfail(strict=True)
8+
@pytest.mark.xfail(strict=True, reason="times out", run=False)
99
@fasteners.interprocess_locked(os.path.join(os.path.dirname(__file__), ".build_lock"))
1010
def test_BenchmarkTest00430(load_strategy):
1111
"""

regression/OWASP/BenchmarkTest00431/test_BenchmarkTest00431.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import regression.utils as utils
66

77

8-
@pytest.mark.xfail(strict=True)
8+
@pytest.mark.xfail(strict=True, run=False, reason="Times out on Travis")
99
@fasteners.interprocess_locked(os.path.join(os.path.dirname(__file__), ".build_lock"))
1010
def test_BenchmarkTest00431(load_strategy):
1111
"""

0 commit comments

Comments
 (0)