Skip to content

Commit

Permalink
fix: support for pytest-retries
Browse files Browse the repository at this point in the history
  • Loading branch information
acolombier committed Oct 11, 2024
1 parent ffc698a commit 5a8bedd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pytest_html/report_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def __init__(self, config):
"xpassed": {"label": "Unexpected passes", "value": 0},
"error": {"label": "Errors", "value": 0},
"rerun": {"label": "Reruns", "value": 0},
# Used by pytest-retries
"retried": {"label": "Retried", "value": 0},
}

self._results_table_header = [
Expand Down

0 comments on commit 5a8bedd

Please sign in to comment.