Skip to content

refactor: CLI output redesign with table-based badges #82

refactor: CLI output redesign with table-based badges

refactor: CLI output redesign with table-based badges #82

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main, develop]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: requirements.txt
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run unit tests with coverage
working-directory: tests
run: pytest unit/ -v --tb=short --cov=db_sync_tool.utility.security --cov=db_sync_tool.utility.pure --cov=db_sync_tool.utility.config --cov=db_sync_tool.cli --cov-report=term-missing