forked from camas/setuptools-git-ver
-
-
Notifications
You must be signed in to change notification settings - Fork 23
136 lines (116 loc) · 3.91 KB
/
test.yml
File metadata and controls
136 lines (116 loc) · 3.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Tests
on:
push:
branches-ignore:
- dependabot/**
- pre-commit-ci-update-config
pull_request:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
DEFAULT_PYTHON: '3.13'
MIN_COVERAGE: 94
jobs:
tests:
name: Run ${{ matrix.mark}} tests (${{ matrix.python-version }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
# run all the tests on latest Python version
- os: ubuntu-latest
mark: all
python-version: '3.13'
# run only minimal set of tests on other Python versions because it takes too much time
- os: ubuntu-22.04
mark: important
python-version: '3.7'
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
activate-environment: "true"
enable-cache: "false"
- name: Install dependencies
run: |
uv sync --group test
- name: Run tests
run: |
mkdir -p reports/junit/
coverage run --parallel-mode -m pytest -n auto -m ${{ matrix.mark }} --junitxml=reports/junit/${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.mark }}.xml
- name: Upload coverage results
uses: actions/upload-artifact@v7
with:
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.mark }}
path: reports/*
# https://github.com/actions/upload-artifact/issues/602
include-hidden-files: true
all_done:
name: Tests done
runs-on: ubuntu-latest
needs: [tests]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Download all coverage reports
uses: actions/download-artifact@v8
with:
path: reports/
pattern: coverage-*
merge-multiple: true
- name: Show test results
uses: mikepenz/action-junit-report@v6
if: success() || failure() # always run even if the previous step fails
with:
report_paths: reports/junit/*.xml
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v6
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: "false"
- name: Combine coverage
run: |
uv run --group test coverage combine
uv run --group test coverage xml -o reports/coverage.xml
- name: Coverage comment
id: coverage
uses: MishaKav/pytest-coverage-comment@v1
with:
pytest-xml-coverage-path: ./reports/coverage.xml
default-branch: master
xml-skip-covered: true
report-only-changed-files: true
hide-comment: ${{ github.event_name != 'pull_request' }}
- name: Dynamic Badges
uses: schneegans/dynamic-badges-action@v1.7.0
if: github.repository == 'dolfinus/setuptools-git-versioning' && github.event_name == 'push'
with:
auth: ${{ secrets.PERSONAL_TOKEN }}
gistID: 38b81533c2b8c389db378e3bae7df034
filename: setuptools_git_versioning_badge.json
label: Coverage
message: ${{ steps.coverage.outputs.coverage }}
color: ${{ steps.coverage.outputs.color }}
- name: Fail if coverage too low
if: ${{ steps.coverage.outputs.coverage < env.MIN_COVERAGE }}
run: |
echo "Coverage is below ${{ env.MIN_COVERAGE }}%!"
exit 1
- name: All done
run: echo 1