From bdd940131d967776d5167ee77f804bd86d07741f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 2 Oct 2023 14:13:46 +0200 Subject: [PATCH] ci: run git unshallow conditionally (#470) --- .woodpecker/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index b832805..1f630bc 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -16,7 +16,7 @@ steps: fetch: image: docker.io/library/python:3.11 commands: - - git fetch --unshallow --quiet + - git fetch --depth=2147483647 pytest: image: ${PYTHON_VERSION}