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.
1 parent f3e3905 commit 6589613Copy full SHA for 6589613
integration_tests/test_codemod_urls.py
@@ -17,7 +17,6 @@ async def visit_url(client, url):
17
return url, None
18
19
20
-@pytest.mark.asyncio
21
async def check_accessible_urls(urls):
22
async with httpx.AsyncClient() as client:
23
tasks = [visit_url(client, url) for url in urls]
@@ -36,6 +35,7 @@ async def check_accessible_urls(urls):
36
35
37
38
@pytest.mark.asyncio
+@pytest.mark.skip(reason="Flaky test, needs investigation")
39
async def test_codemod_reference_urls():
40
urls = list(
41
set(
@@ -50,6 +50,7 @@ async def test_codemod_reference_urls():
50
51
52
53
54
async def test_tool_rules_urls():
55
urls = [
56
rule.url
0 commit comments