Skip to content

feat: add test suite for OAuthGuard and OAuth 2.1 validation flow, in… #1

feat: add test suite for OAuthGuard and OAuth 2.1 validation flow, in…

feat: add test suite for OAuthGuard and OAuth 2.1 validation flow, in… #1

Workflow file for this run

name: Python SDK Test Suite
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Run Integration Tests
run: |
python tests/test_basic.py
python tests/test_tasks.py
python tests/test_initial_tool.py
python tests/test_oauth.py
python tests/test_production.py