We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pytest-rerunfailures
1 parent e3f4982 commit ac79cfaCopy full SHA for ac79cfa
pytest_github_actions_annotate_failures/plugin.py
@@ -27,15 +27,6 @@ def pytest_runtest_makereport(item, call):
27
if os.environ.get("GITHUB_ACTIONS") != "true":
28
return
29
30
- try:
31
- # If we have the pytest_rerunfailures plugin, and there are still
32
- # retries to be run, then ignore error
33
- import pytest_rerunfailures
34
- if item.execution_count <= pytest_rerunfailures.get_reruns_count(item):
35
- return
36
- except ImportError:
37
- pass
38
-
39
if report.when == "call" and report.failed:
40
# collect information to be annotated
41
filesystempath, lineno, _ = report.location
0 commit comments