Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't check that jshell is the CMD on SLE 15 SP7+ #683

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/test_openjdk_devel.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from bci_tester.data import OPENJDK_DEVEL_11_CONTAINER
from bci_tester.data import OPENJDK_DEVEL_17_CONTAINER
from bci_tester.data import OPENJDK_DEVEL_21_CONTAINER
from bci_tester.data import OS_VERSION
from tests import test_openjdk

CONTAINER_TEST_DIR = "/tmp/"
Expand Down Expand Up @@ -87,6 +88,10 @@ def test_maven_present(auto_container):
assert auto_container.connection.run_expect([0], "mvn --version")


@pytest.mark.skipif(
OS_VERSION not in ("15.3", "15.4", "15.5", "15.6"),
reason="jshell is no longer the CMD as of SP7",
)
@pytest.mark.parametrize(
"container,java_version",
# Softfailure for bsc#1221983 only applies to OpenJDK-devel-21
Expand Down
Loading