pytest-api/.gitea/workflows/.build.yaml

40 lines
1.3 KiB
YAML
Raw Normal View History

2024-07-21 19:33:44 +00:00
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
- name: Run Open Api Tests
run:
2024-07-21 20:14:38 +00:00
touch .env.gw
&& 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:
touch .env.qa
&& 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
&& rm .env.qa
2024-07-21 19:33:44 +00:00