From 06d9753c46067dd6227b55189224c10bd85e94c6 Mon Sep 17 00:00:00 2001 From: brian Date: Sat, 21 Dec 2024 16:03:04 +0000 Subject: [PATCH] added CI vars for tests --- .gitea/workflows/pull.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/pull.yaml b/.gitea/workflows/pull.yaml index ee6efce..d7258d7 100644 --- a/.gitea/workflows/pull.yaml +++ b/.gitea/workflows/pull.yaml @@ -29,6 +29,10 @@ jobs: run: | poetry run mypy . - name: Pytest + env: + MINIO_ENDPOINT: ${{ vars.MINIO_ENDPOINT }} + MINIO_ACCESS_KEY: ${{ secrets.MINIO_ACCESS_KEY }} + MINIO_SECRET_KEY: ${{ secrets.MINIO_SECRET_KEY }} run: | poetry run pytest . - name: Coverage Report