pytest-api/.gitea/workflows/.build.yaml
Greg Gauthier f80812d953
Some checks failed
build / build (push) Failing after 11s
Update .gitea/workflows/.build.yaml
2024-07-21 20:28:19 +00:00

38 lines
1.3 KiB
YAML

name: build
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: python-latest
steps:
- name: Clone Repo
run:
git clone https://repos.gmgauthier.com/gmgauthier/pytest-api.git .
&& ls -la
- name: Prep Python Environment
run:
python -m pip install -r requirements.txt
&& 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
- name: Run Oauth2 Api Tests
run:
echo "API_URL=${{ secrets.EDD_API_URL }}" >> .env.qa
&& echo "CLIENT_ID=${{ secrets.EDD_CLIENT_ID }}" >> .env.qa
&& echo "CLIENT_SECRET=${{ secrets.EDD_CLIENT_SECRET }}" >> .env.qa
&& echo "TOKEN_FETCH_URL=${{ secrets.EDD_TOKEN_FETCH_URL }}" >> .env.qa
&& echo "LOGIN=${{ secrets.EDD_QA_LOGIN }}" >> .env.qa
&& echo "PASSWORD=${{ secrets.EDD_QA_PWD }}" >> .env.qa
&& 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