Skip to content

Fix "No valid session ID provided" error by setting stateless_http before app creation #72

Fix "No valid session ID provided" error by setting stateless_http before app creation

Fix "No valid session ID provided" error by setting stateless_http before app creation #72

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
push:
branches:
- feature/*
- release/*
- hotfix/*
workflow_dispatch: # 👈 allows manual run from GitHub UI
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Set up environment
run: |
uv venv
source .venv/bin/activate
uv pip install -e .[test,dev]
- name: Run code quality checks
run: |
source .venv/bin/activate
flake8 src/ --max-line-length=88
black --check src/ --line-length=88
- name: Run tests
run: |
source .venv/bin/activate
python tests/run_tests.py --all --verbose