Skip to content

Commit

Permalink
Skip test_multiple_bind_addresses_port_forward on macOS (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson authored May 21, 2024
1 parent a7a5c3c commit a676fab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kr8s/tests/test_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import datetime
import inspect
import pathlib
import platform
import tempfile
import time
from contextlib import suppress
Expand Down Expand Up @@ -656,6 +657,10 @@ async def test_unsupported_port_forward():
await PortForward(pv, 80).start()


@pytest.mark.skipif(
"macOS" in platform.platform(),
reason="Hangs on macOS, see https://github.com/kr8s-org/kr8s/issues/380",
)
async def test_multiple_bind_addresses_port_forward(nginx_service):
[nginx_pod, *_] = await nginx_service.ready_pods()

Expand Down

0 comments on commit a676fab

Please # to comment.