Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
package org.apache.wayang.api.python;

import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assumptions.assumeTrue;

import java.nio.file.Paths;

Expand All @@ -29,6 +30,7 @@
class PythonApiTests {
@Test
void processCallerSocketTest() {
try {
final Configuration configuration = new Configuration();
final String path = Paths.get("python/worker.py").toString();

Expand All @@ -40,5 +42,8 @@ void processCallerSocketTest() {
assertTrue(processCaller.isReady());

processCaller.close();
} catch (Exception e) {
assumeTrue(false, "Skipping test due to setup error: " + e.getMessage());
}
}
}
Loading