From 0fc68c76b1b4a50d887a5a50f274f5f52ea26ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= <valtri@civ.zcu.cz> Date: Sat, 7 Jun 2025 08:03:56 +0000 Subject: [PATCH] Workaroung problem with non-blocking console in ansible linter --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b285626..cc4b2c4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,9 @@ mega-linter: - /root/.cache image: name: oxsecurity/megalinter:v8 + before_script: + - | + python3 -c 'import os; [os.set_blocking(i, True) for i in range(0, 3)]' script: - "true" variables: -- GitLab