Skip to content

Commit 42bd3f0

Browse files
committed
test: mark upstream flaky tests as flaky
1 parent 0c26cbf commit 42bd3f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/async/test_browsercontext_proxy.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import base64
1616

1717
import pytest
18+
from flaky import flaky
1819

1920

2021
@pytest.fixture(scope="session")
@@ -71,6 +72,7 @@ async def test_should_work_with_ip_port_notion(context_factory, server):
7172
assert await page.title() == "Served by the proxy"
7273

7374

75+
@flaky # Upstream flaky
7476
async def test_should_authenticate(context_factory, server):
7577
def handler(req):
7678
auth = req.getHeader("proxy-authorization")
@@ -99,6 +101,7 @@ def handler(req):
99101
)
100102

101103

104+
@flaky # Upstream flaky
102105
async def test_should_authenticate_with_empty_password(context_factory, server):
103106
def handler(req):
104107
auth = req.getHeader("proxy-authorization")

0 commit comments

Comments
 (0)