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
Currently there is no way to achieve this. I did not even know about that @pytest.mark.dependency() decorator. I feel it is out of scope for this project to support rerunning tests which did not actually fail.
Hello. How i can rerun dependency tests?
For example:
@pytest.mark.dependency()
def test_1():
@pytest.mark.dependency(depends=['test_1'])
def test_2():
@pytest.mark.dependency(depends=['test_2'])
def test_3():
if fail test_3, how i can rerun all dependency tests(test_1, test_2, test_3)?
The text was updated successfully, but these errors were encountered: