Mark test_idval_hypothesis as flaky on Windows (#3707)
This commit is contained in:
parent
011f88f7e7
commit
6e57d123bb
|
@ -212,6 +212,9 @@ class TestMetafunc(object):
|
||||||
@hypothesis.settings(
|
@hypothesis.settings(
|
||||||
deadline=400.0
|
deadline=400.0
|
||||||
) # very close to std deadline and CI boxes are not reliable in CPU power
|
) # very close to std deadline and CI boxes are not reliable in CPU power
|
||||||
|
@pytest.mark.xfail(
|
||||||
|
sys.platform.startswith("win32"), reason="flaky #3707", strict=False
|
||||||
|
)
|
||||||
def test_idval_hypothesis(self, value):
|
def test_idval_hypothesis(self, value):
|
||||||
from _pytest.python import _idval
|
from _pytest.python import _idval
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue