fix: resolve CI test failures - API compatibility fixes
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-03-22 13:04:03 +00:00
parent de35bdbe51
commit 644458abdb

View File

@@ -1,14 +1,23 @@
name: CI
on: push
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install
- uses: actions/checkout@v4
- name: Set up Python
run: |
pip3 install --no-cache-dir -e /app 2>&1 | tail -30 || echo "Exit code: $?"
sudo apt-get update
sudo apt-get install -y python3 python3-pip python3-venv
python3 --version
pip3 --version
- name: Install package
run: pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: |
pytest /app/tests/ -v 2>&1 | tail -30 || echo "Exit code: $?"
run: pytest tests/ -v