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

44 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2024-07-22 15:58:56 +00:00
name: execute
2024-07-21 19:33:44 +00:00
2024-07-22 18:26:27 +00:00
on: [ push ]
2024-07-21 19:33:44 +00:00
2024-07-22 18:26:27 +00:00
env:
2024-07-21 19:33:44 +00:00
BUILD_TYPE: Release
jobs:
build:
2024-07-22 16:06:23 +00:00
runs-on: ubuntu-gitea
strategy:
matrix:
2024-07-22 18:26:27 +00:00
python-version: [ "3.12" ]
2024-07-21 19:33:44 +00:00
steps:
2024-07-22 18:26:27 +00:00
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
python -m pip install -r requirements.txt
- name: Prep Env Files
run: |
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_QA_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