Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed May 7, 2024
1 parent 8974fec commit 70b292a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions tests/test_timeouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ async def test_read_timeout(server):
await client.get(server.url.copy_with(path="/slow_response"))


@pytest.mark.skipif(sys.platform == "win32", reason="broken on windows")
@pytest.mark.anyio
async def test_write_timeout(server):
timeout = httpx.Timeout(None, write=1e-6)
Expand All @@ -36,7 +35,6 @@ async def test_connect_timeout(server):
await client.get("http://10.255.255.1/")


@pytest.mark.skipif(sys.platform == "win32", reason="broken on windows")
@pytest.mark.anyio
async def test_pool_timeout(server):
limits = httpx.Limits(max_connections=1)
Expand Down
1 change: 0 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ def test_logging_redirect_chain(server, caplog):
]


@pytest.mark.skipif(sys.platform == "win32", reason="Path separator problem")
def test_logging_ssl(caplog):
caplog.set_level(logging.DEBUG)
with httpx.Client():
Expand Down

0 comments on commit 70b292a

Please sign in to comment.