From d7f6075c8b3c08a8a3717faa4b594acb584578f3 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Wed, 6 Nov 2019 12:55:37 +0100 Subject: [PATCH] [FIX] runbot: avoid build failure when test_tags not supported --- runbot/models/build_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/models/build_config.py b/runbot/models/build_config.py index 23bf4adb..750d3a7c 100644 --- a/runbot/models/build_config.py +++ b/runbot/models/build_config.py @@ -327,7 +327,7 @@ class ConfigStep(models.Model): test_tags = self.test_tags.replace(' ', '') cmd.extend(['--test-tags', test_tags]) else: - build._log('test_all', 'Test tags given but not supported', level='WARNING') + build._log('test_all', 'Test tags given but not supported') if grep(config_path, "--screenshots"): cmd += ['--screenshots', '/data/build/tests']