generated from shenxiangzhuang/mppt
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 1.38 KB
/
test.yaml
File metadata and controls
48 lines (41 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Test
on:
push:
branches:
- master
pull_request:
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# TODO: re-include it
# excludes python3.13 on windows due to error: Windows fatal exception: access violation
- os: windows-latest
python-version: "3.13"
runs-on: ${{ matrix.os }}
env:
UV_HTTP_TIMEOUT: 900 # max 15min to install deps
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests and generate coverage report
run: uv run pytest --doctest-modules -v --cov=zhplot --cov-fail-under 90 --cov-report=term --cov-report=xml --cov-report=html zhplot tests
- name: Upload test results to Codecov
if: success() && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}