diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e0b50927..2e7fe43f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,7 @@ stages: wiki-test: stage: checks script: - - "./test/check_devices_in_wiki.py" + - "./test/check_devices_in_wiki.py --booting" static-code-analysis: stage: checks diff --git a/test/check_devices_in_wiki.py b/test/check_devices_in_wiki.py index 014c470e..b099f917 100755 --- a/test/check_devices_in_wiki.py +++ b/test/check_devices_in_wiki.py @@ -68,8 +68,9 @@ def check_device(device, html, is_booting): return True if device in html["not_booting"]: if is_booting: - print(device + ": wrong section of the wiki, this should be in" - " booting already") + print(device + ": still in 'not booting' section (if this is a" + " merge request, your device should be in the booting" + " section already)") return False return True