Skip to content

refactor: Phase 1+2 工程优化(功能零变更,45 测试全绿) #36

refactor: Phase 1+2 工程优化(功能零变更,45 测试全绿)

refactor: Phase 1+2 工程优化(功能零变更,45 测试全绿) #36

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install PyQt5 pytest pytest-cov
- name: Run tests
run: python -m pytest tests/ -q --cov=apluse.core --cov=apluse.mcpk --cov=apluse.engine_window --cov=apluse.restore_template --cov-report=term