This commit is contained in:
2025-03-03 18:52:31 +03:00
parent 50d343df8f
commit 2212fa2716
2 changed files with 6 additions and 4 deletions

View File

@@ -8,15 +8,14 @@ test:
stage: test
image: python:3.11-alpine
script:
- pip install -r requirements.txt
- pip install -q -r requirements.txt
- python -m unittest discover tests
only:
- main
before_script:
- apk add --no-cache docker-cli curl jq # Устанавливаем curl и jq
- apk add --no-cache docker-cli curl jq
- |
# Wait for Docker to be ready
until docker info; do
echo "Waiting for Docker to be ready..."
sleep 5