Skip to content

[FIX] otools-migrate-db: target the right DB at cleanup if no snapshot #34

[FIX] otools-migrate-db: target the right DB at cleanup if no snapshot

[FIX] otools-migrate-db: target the right DB at cleanup if no snapshot #34

Workflow file for this run

name: tests
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[test]
- name: Run tests
run: coverage run --source=odoo_tools -m pytest -v tests && coverage report -m