diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-05 20:11:46 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-05 20:11:46 +0200 |
commit | d87acf3a084349c9575f1ecb53f5003733d407c0 (patch) | |
tree | c8d7708734aac343ed588d61c06da850a18d4cbe /test/script | |
parent | 1bcacccb2c51e124a99a70c1cb99b0a580a5b06c (diff) |
Test: always use storage within node directory
Diffstat (limited to 'test/script')
-rw-r--r-- | test/script/run.et | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/script/run.et b/test/script/run.et index a05ddc4..08cee71 100644 --- a/test/script/run.et +++ b/test/script/run.et @@ -16,7 +16,7 @@ def expect_success from p of job: test RunWithoutRepo: node n - spawn on n as p args [ "${scripts.path}/norepo-basic.yaml", "run", "success", "failure" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/norepo-basic.yaml", "run", "success", "failure" ] expect_result from p: of "success" result "done" of "failure" result "failed" @@ -113,7 +113,7 @@ test RunExternalRepo: # Explicit jobfile outside of any git repo local: - spawn on n as p args [ "--repo=first:./first", "--repo=second:./second", "${scripts.path}/external.yaml", "run", "single", "multiple", "combine" ] + spawn on n as p args [ "--repo=first:./first", "--repo=second:./second", "--storage=.minici", "${scripts.path}/external.yaml", "run", "single", "multiple", "combine" ] for job in [ "single.$first_root", "multiple.$first_subtree.$second_subtree", "combine.$first_root.$second_subtree" ]: expect_success from p of job @@ -122,7 +122,7 @@ test RunExternalRepo: # Explicit jobfile within a git repo local: - spawn on n as p args [ "--repo=first:./first", "--repo=second:./second", "${scripts.path}/external.yaml", "run", "single" ] + spawn on n as p args [ "--repo=first:./first", "--repo=second:./second", "--storage=.minici", "${scripts.path}/external.yaml", "run", "single" ] expect_success from p of "single.$first_root" expect /(.*)/ from p capture done guard (done == "run-finish") |