fix: Added API keys to CI
All checks were successful
CI/CD Awesome Pipeline / Test (push) Successful in 2m42s
CI/CD Awesome Pipeline / Build & Push to Registry (push) Has been skipped

This commit is contained in:
2025-12-21 12:37:38 +01:00
parent f969724ee4
commit 8d0bc59d28
2 changed files with 7 additions and 1 deletions

View File

@@ -242,5 +242,8 @@ _ci-image-name:
_ci-run-tests: build-test
@echo "$(T)🧪 Running tests in Docker...$(R)"
docker run --rm $(IMAGE_NAME):test pytest
docker run --rm \
-e DEEPSEEK_API_KEY \
-e TMDB_API_KEY \
$(IMAGE_NAME):test pytest
@echo "✅ Tests passed."