Skip to content

Prevented the compatibility suite from failing totally if one fails #55

Prevented the compatibility suite from failing totally if one fails

Prevented the compatibility suite from failing totally if one fails #55

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
defaults:
run:
working-directory: ./
jobs:
app-testing:
runs-on: ubuntu-latest
name: Run Tests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install Dependencies
run: poetry install
- name: Run Tests
run: poetry run pytest
env:
BASE_URL: ${{ secrets.BASE_URL }}
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }}
JWT_KEY: ${{ secrets.JWT_KEY }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}