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.
_check_failing_spans_with_quarantine
1 parent d10500b commit b539c6dCopy full SHA for b539c6d
mergify_cli/ci/quarantine.py
@@ -50,7 +50,7 @@ async def check_failing_spans_with_quarantine(
50
return 0
51
52
failing_tests_not_quarantined_count: int = 0
53
- quarantined_tests_tuple = await _check_failing_spans_with_quarantine(
+ quarantined_tests_tuple = await fetch_quarantined_tests_from_failing_spans(
54
api_url,
55
token,
56
repository,
@@ -109,7 +109,7 @@ class QuarantinedTests(typing.NamedTuple):
109
retry=tenacity.retry_if_exception_type(httpx.TransportError),
110
reraise=True,
111
)
112
-async def _check_failing_spans_with_quarantine(
+async def fetch_quarantined_tests_from_failing_spans(
113
api_url: str,
114
token: str,
115
repository: str,
0 commit comments