You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS : OSX El Captian
pytest --version
This is pytest version 3.0.7,
pytest-instafail-0.3.0 at
pytest-rerunfailures-2.1.0 at
pytest-timeout-1.0.0 at
Minimal example if possible
import pytest
import time
@pytest.mark.timeout(2)
@pytest.mark.flaky(3) # comment this line to see the test fail as expected
def test_new():
time.sleep(10)
assert True
The text was updated successfully, but these errors were encountered:
Original report by Anonymous.
pytest-timeout plugin doesn't work when pytest-rerunfailures is used. Please see a example at the end of this bug report
pip list
of the virtual environment you are usingThe text was updated successfully, but these errors were encountered: