From 1854b10f32c973323a60e79348d0446c9b6ca971 Mon Sep 17 00:00:00 2001
From: Dmitry Rodionov <d.rodionov@picodata.io>
Date: Fri, 29 Dec 2023 18:41:10 +0300
Subject: [PATCH] fix: use | instead of > for script body

By adding a comment here in ce9ddc2606d2fe4f79b0db435d85c250525a5e3e
I made the whole command to be ignored because for gitlab > means single
command that is split across lines, so by starting it with # on the
first line I made the whole command a comment.

See https://docs.gitlab.com/ee/ci/yaml/script.html#split-long-commands
for details.
---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2b216e23f8..4dd75bf293 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -214,8 +214,9 @@ test-linux:
     - cargo test --locked
 
     - cargo build --features webui,error_injection --locked
+
+    # -vv shows extended diff for failures
     - >
-      # -vv shows extended diff for failures
       pipenv run pytest -vv
       --numprocesses auto
       --junitxml=junit_pytest.xml
-- 
GitLab