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 255fc90 commit b2cb26aCopy full SHA for b2cb26a
tests/test_busybox.py
@@ -92,6 +92,18 @@ def test_base32_64(auto_container):
92
)
93
94
95
+@pytest.mark.skipif(
96
+ OS_VERSION in ("15.6", "15.7"),
97
+ reason="supporting rootless ping is considered a feature and ECO still pending.",
98
+)
99
+def test_ping(auto_container):
100
+ """Ensure ping command works in a busybox container"""
101
+ assert (
102
+ "--- www.suse.com ping statistics"
103
+ in auto_container.connection.check_output("ping -4 -c 2 www.suse.com")
104
+ )
105
+
106
107
@pytest.mark.parametrize(
108
"container_per_test", [BUSYBOX_CONTAINER], indirect=True
109
0 commit comments