-
-
Notifications
You must be signed in to change notification settings - Fork 60
45 lines (39 loc) · 1.47 KB
/
multiple-files.yml
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
name: Test Multipli File
on:
pull_request:
permissions:
contents: write
checks: write
pull-requests: write
jobs:
test-multiple-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pytest coverage comment
uses: MishaKav/pytest-coverage-comment@main
with:
multiple-files: |
My Title 1, ./data/pytest-coverage_3.txt, ./data/pytest_1.xml
My Title 2, ./data/pytest-coverage_4.txt, ./data/pytest_2.xml
- name: Pytest coverage comment multiple-files no test report
uses: MishaKav/pytest-coverage-comment@main
with:
create-new-comment: true
multiple-files: |
My Title 1 w/o report, ./data/pytest-coverage_3.txt
My Title 2 w/o report, ./data/pytest-coverage_4.txt
- name: Pytest coverage comment multiple-files mixed 1
uses: MishaKav/pytest-coverage-comment@main
with:
create-new-comment: true
multiple-files: |
My Title 1 w/ report, ./data/pytest-coverage_3.txt, ./data/pytest_1.xml
My Title 2 w/o report, ./data/pytest-coverage_4.txt
- name: Pytest coverage comment multiple-files mixed 2
uses: MishaKav/pytest-coverage-comment@main
with:
create-new-comment: true
multiple-files: |
My Title 1 w/o report, ./data/pytest-coverage_3.txt
My Title 2 w/ report, ./data/pytest-coverage_4.txt, ./data/pytest_2.xml