From 8d1186a07368070f700d8635138ef90e0eff9a04 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 21 Jul 2024 19:46:59 +0000 Subject: [PATCH] kludge to get the .env set up in the workflow --- .gitea/workflows/.build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/.build.yaml b/.gitea/workflows/.build.yaml index e97c01a..64321b6 100644 --- a/.gitea/workflows/.build.yaml +++ b/.gitea/workflows/.build.yaml @@ -17,6 +17,8 @@ jobs: - name: Prep Python Environment run: python -m pip install -r requirements.txt + touch .env.qa + echo "API_URL=${{ vars.GAMMA_WORLD_API_URL }}" >> .env.qa - name: Run Open Api Tests run: pytest -rA --durations=0 --color=auto --config-file=./pytest.ini -m rules