From 37eec6732420300b4c6fd7a6ccfae837545bf4c3 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Fri, 13 Oct 2023 21:48:14 +0200 Subject: [PATCH] add message template used when no result of test suite is found --- README.md | 6 ++++++ app.cfg.example | 1 + 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 317dc921..505ea78c 100644 --- a/README.md +++ b/README.md @@ -600,6 +600,12 @@ job_result_unknown_fmt =
:shrug: UNKNOWN _(click triangle for `job_result_unknown_fmt` is used in case no result file (produced by `bot/check-build.sh` provided by target repository) was found. +``` +job_test_unknown_fmt =
:shrug: UNKNOWN _(click triangle for details)_
  • Job test file `{filename}` does not exist in job directory or reading it failed.
+``` +`job_test_unknown_fmt` is used in case no test file (produced by `bot/check-test.sh` +provided by target repository) was found. + # Instructions to run the bot components The bot consists of three components: diff --git a/app.cfg.example b/app.cfg.example index 922df7ae..7f4f40ee 100644 --- a/app.cfg.example +++ b/app.cfg.example @@ -215,3 +215,4 @@ no_tarball_message = Slurm output lacks message about created tarball. no_matching_tarball = No tarball matching `{tarball_pattern}` found in job dir. multiple_tarballs = Found {num_tarballs} tarballs in job dir - only 1 matching `{tarball_pattern}` expected. job_result_unknown_fmt =
:shrug: UNKNOWN _(click triangle for detailed information)_
  • Job results file `{filename}` does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
+job_test_unknown_fmt =
:shrug: UNKNOWN _(click triangle for detailed information)_
  • Job test file `{filename}` does not exist in job directory or reading it failed.