diff --git a/README.md b/README.md index b26748ea..e268fc41 100644 --- a/README.md +++ b/README.md @@ -661,46 +661,6 @@ running_job = job `{job_id}` is running #### `[finished_job_comments]` section The `[finished_job_comments]` section sets templates for messages about finished jobs. -``` -success = :grin: SUCCESS tarball `{artefact_name}` ({artefact_size} GiB) in job dir -``` -`success` specifies the message for a successful job that produced an artefact. - -``` -failure = :cry: FAILURE -``` -`failure` specifies the message for a failed job. - -``` -no_slurm_out = No slurm output `{slurm_out}` in job dir -``` -`no_slurm_out` specifies the message for missing Slurm output file. - -``` -slurm_out = Found slurm output `{slurm_out}` in job dir -``` -`slurm_out` specifies the message for found Slurm output file. - -``` -missing_modules = Slurm output lacks message "No missing modules!". -``` -`missing_modules` is used to signal the lack of a message that all modules were built. - -``` -no_tarball_message = Slurm output lacks message about created tarball. -``` -`no_tarball_message` is used to signal the lack of a message about a created tarball. - -``` -no_matching_tarball = No tarball matching `{artefact_pattern}` found in job dir. -``` -`no_matching_tarball` is used to signal a missing tarball. - -``` -multiple_tarballs = Found {num_artefacts} tarballs in job dir - only 1 matching `{artefact_pattern}` expected. -``` -`multiple_tarballs` is used to report that multiple tarballs have been found. - ``` job_result_unknown_fmt =
:shrug: UNKNOWN _(click triangle for details)_
``` diff --git a/app.cfg.example b/app.cfg.example index 867363bc..ae51ade6 100644 --- a/app.cfg.example +++ b/app.cfg.example @@ -247,14 +247,6 @@ running_job = job `{job_id}` is running [finished_job_comments] -success = :grin: SUCCESS tarball `{artefact_name}` ({artefact_size} GiB) in job dir -failure = :cry: FAILURE -no_slurm_out = No slurm output `{slurm_out}` in job dir -slurm_out = Found slurm output `{slurm_out}` in job dir -missing_modules = Slurm output lacks message "No missing modules!". -no_tarball_message = Slurm output lacks message about created tarball. -no_matching_tarball = No tarball matching `{artefact_pattern}` found in job dir. -multiple_tarballs = Found {num_artefacts} tarballs in job dir - only 1 matching `{artefact_pattern}` expected. job_result_unknown_fmt =
:shrug: UNKNOWN _(click triangle for detailed information)_
job_test_unknown_fmt =
:shrug: UNKNOWN _(click triangle for detailed information)_
diff --git a/tests/test_app.cfg b/tests/test_app.cfg index 31797fa6..f940c1df 100644 --- a/tests/test_app.cfg +++ b/tests/test_app.cfg @@ -25,11 +25,3 @@ awaits_lauch = job awaits launch by Slurm scheduler running_job = job `{job_id}` is running [finished_job_comments] -success = :grin: SUCCESS tarball `{artefact_name}` ({artefact_size} GiB) in job dir -failure = :cry: FAILURE -no_slurm_out = No slurm output `{slurm_out}` in job dir -slurm_out = Found slurm output `{slurm_out}` in job dir -missing_modules = Slurm output lacks message "No missing modules!". -no_tarball_message = Slurm output lacks message about created tarball. -no_matching_tarball = No tarball matching `{artefact_pattern}` found in job dir. -multiple_tarballs = Found {num_artefacts} tarballs in job dir - only 1 matching `{artefact_pattern}` expected.