summaryrefslogtreecommitdiff
path: root/testbench
diff options
context:
space:
mode:
authorAntoine A <>2024-02-19 12:16:46 +0100
committerAntoine A <>2024-02-19 12:16:46 +0100
commit988184818d43f213baf4f1b75385ab8cb9de6f71 (patch)
tree2316002cafba7d70b639006b6f998d40d5898084 /testbench
parent08315555e97b34aadcd9f597156cbffbd86033b8 (diff)
downloadlibeufin-988184818d43f213baf4f1b75385ab8cb9de6f71.tar.gz
libeufin-988184818d43f213baf4f1b75385ab8cb9de6f71.tar.bz2
libeufin-988184818d43f213baf4f1b75385ab8cb9de6f71.zip
More CI fix
Diffstat (limited to 'testbench')
-rw-r--r--testbench/src/test/kotlin/Iso20022Test.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/testbench/src/test/kotlin/Iso20022Test.kt b/testbench/src/test/kotlin/Iso20022Test.kt
index 27914c78..481961c0 100644
--- a/testbench/src/test/kotlin/Iso20022Test.kt
+++ b/testbench/src/test/kotlin/Iso20022Test.kt
@@ -25,7 +25,9 @@ import kotlin.io.path.*
class Iso20022Test {
@Test
fun logs() {
- for (platform in Path("test").listDirectoryEntries()) {
+ val root = Path("test")
+ if (!root.exists()) return;
+ for (platform in root.listDirectoryEntries()) {
for (file in platform.listDirectoryEntries()) {
val fetch = file.resolve("fetch")
if (file.isDirectory() && fetch.exists()) {