Skip to content

Fix CI test collection by adding repo root to pythonpath #7

Fix CI test collection by adding repo root to pythonpath

Fix CI test collection by adding repo root to pythonpath #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install -r requirements.txt -r requirements-test.txt
- name: Run tests
run: pytest -v