From b279e1d1e1e550cbd3e3cd1ec5dde536691e6525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20R=C3=B6blitz?= Date: Sun, 26 Nov 2023 12:27:07 +0100 Subject: [PATCH] clarify comments on tests Co-authored-by: Kenneth Hoste --- eessi_bot_job_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eessi_bot_job_manager.py b/eessi_bot_job_manager.py index 6df9de4d..afe41a5f 100644 --- a/eessi_bot_job_manager.py +++ b/eessi_bot_job_manager.py @@ -564,7 +564,7 @@ def process_finished_job(self, finished_job): # check if _bot_jobJOBID.test exits # TODO if not found, assume test was not run (or failed, or ...) and add # a message noting that ('not tested' + 'test suite not run or failed') - # --> 'bot: test [FILTERs]' command runs tests when filter matches + # --> bot/test.sh and bot/check-test.sh scripts are run in job script used by bot for 'build' action job_test_file = f"_bot_job{job_id}.test" job_test_file_path = os.path.join(new_symlink, job_test_file) job_tests = self.read_job_test(job_test_file_path)