Skip to content

Commit 430a537

Browse files
Preinstall curl before integration testing
1 parent c328ce3 commit 430a537

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jjava-distro/src/test/java/org/dflib/jjava/distro/ContainerizedKernelCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private static void initializeContainer() {
100100
private static String getStartupCommand() {
101101
return String.join(" && ",
102102
"apt-get update",
103-
"apt-get install --no-install-recommends -y python3 python3-pip python3-venv",
103+
"apt-get install --no-install-recommends -y python3 python3-pip python3-venv curl",
104104
"python3 -m venv ./venv",
105105
venvCommand("pip install jupyter-console --progress-bar off"),
106106
"tail -f /dev/null"

jjava-distro/src/test/java/org/dflib/jjava/distro/KernelMagicIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void jars() throws Exception {
1919
"https://repo1.maven.org/maven2/jakarta/annotation/jakarta.annotation-api/3.0.0/jakarta.annotation-api-3.0.0.jar",
2020
"-o", jar
2121
);
22-
assertEquals("", fetchResult.getStderr());
22+
assertEquals(0, fetchResult.getExitCode(), fetchResult.getStdout() + "\n" + fetchResult.getStderr());
2323

2424
String snippet = String.join("\n",
2525
"%jars " + jar,

0 commit comments

Comments
 (0)