From cd2b0a26662b98330f491944197f74949fa73bcc Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 10 Nov 2024 19:03:54 +0100 Subject: [PATCH] [tests] Fixed Alpine repo name. --- .drone/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone/run-tests.sh b/.drone/run-tests.sh index 74450a6714..726b4979cb 100755 --- a/.drone/run-tests.sh +++ b/.drone/run-tests.sh @@ -1,6 +1,6 @@ #!/bin/sh -apk add --update --no-cache $(cat platypush/install/requirements/alpine.txt) +apk add --update --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ $(cat platypush/install/requirements/alpine.txt) pip install . --break-system-packages pip install -r requirements-tests.txt --break-system-packages pytest tests