Update .gitea/workflows/.build.yaml
Some checks failed
build / build (push) Failing after 11s

This commit is contained in:
Greg Gauthier 2024-07-21 20:28:19 +00:00
parent 642ca7259c
commit f80812d953

View File

@ -17,13 +17,12 @@ jobs:
- name: Prep Python Environment
run:
python -m pip install -r requirements.txt
touch .env.gw
touch .env.qa
&& touch .env.gw
&& touch .env.qa
- name: Run Open Api Tests
run:
echo "API_URL=${{ vars.GAMMA_WORLD_API_URL }}" >> .env.gw
&& pytest -rA --durations=0 --color=auto --config-file=./pytest.ini -m rules
&& rm .env.gw
- name: Run Oauth2 Api Tests
run:
echo "API_URL=${{ secrets.EDD_API_URL }}" >> .env.qa
@ -35,5 +34,4 @@ jobs:
&& echo "AUDIENCE=${{ secrets.EDD_AUDIENCE }}" >> .env.qa
&& echo "SCOPES=${{ secrets.EDD_SCOPES }}" >> .env.qa
&& pytest -rA --durations=0 --color=auto --config-file=./pytest.ini -m get
&& rm .env.qa