diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-09 22:42:35 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-12 21:20:53 +0100 |
| commit | e96ecb1ce8f81b3a256f6982c5da1aa7cbeb4e59 (patch) | |
| tree | 781d602220c142e9966736061ee82fbfa7ca1598 /test/script/run.et | |
| parent | 652d3e82208da8a0b1bd052c7284b5904e59d20a (diff) | |
Changelog: Job section to publish artifacts to specified destination
Diffstat (limited to 'test/script/run.et')
| -rw-r--r-- | test/script/run.et | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/test/script/run.et b/test/script/run.et index 7c3fb38..f33c2fa 100644 --- a/test/script/run.et +++ b/test/script/run.et @@ -1,32 +1,10 @@ module run +import common + asset scripts: path: ../asset/run -def expect_result from p of job result result: - let dummy = job == "" - expect from p: - /job-start $job/ - /job-finish $job ([a-z]+)/ capture done - guard (done == result) - -def expect_previous_result from p of job result result: - let dummy = job == "" # TODO: forces string type - expect from p: - /job-previous $job ([a-z]+)/ capture done - guard (done == result) - -def expect_success from p of job: - expect_result from p of job result "done" - -def expect_previous_success from p of job: - expect_previous_result from p of job result "done" - -def expect_skip from p of job: - let dummy = job == "" # TODO: forces string type - expect from p: - /job-skip $job/ - test RunWithoutRepo: node n |