-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (74 loc) · 2.34 KB
/
Copy pathtest.yaml
File metadata and controls
87 lines (74 loc) · 2.34 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
name: Test
on:
release:
types:
- published
pull_request:
types:
- opened
- synchronize
branches:
- main
push:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Test code
if: github.event_name == 'push'
run: |
export CICD_TESTING_ENV=true
source .venv/bin/activate
pytest -v -n 8 --ignore=tests/functional --cov=wofostat \
--cov-report json --md-report --md-report-flavor gfm \
--md-report-output md_report.md
- name: Test code
if: github.event_name != 'push'
run: |
export CICD_TESTING_ENV=true
source .venv/bin/activate
pytest -v -n 8 --cov=wofostat --cov-report json --md-report \
--md-report-flavor gfm --md-report-output md_report.md
- name: Update Coverage Badge
if: matrix.python-version == 3.10 && (github.event_name == 'release' || github.event_name == 'workflow_dispatch')
uses: we-cli/coverage-badge-action@main
- name: Output reports to the job summary
shell: bash
run: |
if [ -f md_report.md ]; then
echo "<details><summary>Test Report</summary>" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
cat md_report.md >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "</details>" >> $GITHUB_STEP_SUMMARY
fi
- name: Render the report to the PR
uses: marocchino/sticky-pull-request-comment@v2
with:
header: Test Report
recreate: true
path: md_report.md