Skip to content

Commit

Permalink
Merge branch 'main' into fix-stop-container
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmadhankumar authored Oct 7, 2024
2 parents 4bd02ab + b1aa6d8 commit 235e62a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion tests/test_container_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@

SLEEP_CONTAINER = DerivedContainer(
base=LEAP_URL,
containerfile="""ENTRYPOINT ["/usr/bin/sleep", "3600"]""",
containerfile="""
# ps is needed for the tests to filter processes
RUN zypper -n in ps
ENTRYPOINT ["/usr/bin/sleep", "3600"]""",
)

LEAP2 = DerivedContainer(base=LEAP)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_proxy_pod(pod_per_test: PodData, host) -> None:
"Hello Green World"
in host.run_expect(
[0],
f"curl --fail http://localhost:{pod_per_test.forwarded_ports[0].host_port}",
f"curl --fail http://0.0.0.0:{pod_per_test.forwarded_ports[0].host_port}",
).stdout
)

Expand Down

0 comments on commit 235e62a

Please sign in to comment.