Skip to content

minor bug fixes in merge_detections #273

minor bug fixes in merge_detections

minor bug fixes in merge_detections #273

name: python tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch: # Run on manual triggering from GitHub UI
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12","3.13"]
steps:
- uses: actions/checkout@v4
- 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 -r requirements.txt || echo "No requirements.txt found"
# pip install -r requirements-dev.txt || echo "No requirements-dev.txt found"
pip install -e . || echo "No pyproject.toml found"
- name: Run tests with pytest
run: |
pytest -vv