From 4fc03ce0d79eb86b6c727d311df7fb8acae29ec2 Mon Sep 17 00:00:00 2001 From: Maxim Gonchar <maxim.mg.gonchar@gmail.com> Date: Thu, 27 Apr 2023 14:06:17 +0300 Subject: [PATCH] ci: limit depth --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0c3c1a0..510d3b2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ tests: GIT_DEPTH: 1 script: - git submodule sync - - git submodule update --init --recursive + - git submodule update --init --recursive --depth=1 - python3 -m pip install -r submodules/dagflow/requirements.txt - mkdir output - coverage run --source=. --omit=submodules/* -m pytest -- GitLab