File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
pull_request :
6
6
7
+ concurrency :
8
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9
+ cancel-in-progress : true
10
+
7
11
jobs :
8
12
test :
9
13
runs-on : ${{ matrix.os }}
59
63
uses : codecov/codecov-action@v3
60
64
with :
61
65
token : ${{ secrets.CODECOV_TOKEN }}
66
+ flags : ${{ matrix.os }},${{ matrix.python-version }}
62
67
fail_ci_if_error : true
63
68
files : test_artifacts/cobertura.xml
69
+
70
+ - name : Create artifacts
71
+ uses : actions/upload-artifact@v3
72
+ if : ${{ !cancelled() }}
73
+ with :
74
+ name : test-artifacts_${{ matrix.os }}_${{ matrix.python-version }}
75
+ path : test_artifacts/
Original file line number Diff line number Diff line change 4
4
![ PyPI - Downloads] ( https://img.shields.io/pypi/dd/pylint-pytest )
5
5
![ PyPI - Version] ( https://img.shields.io/pypi/v/pylint-pytest )
6
6
![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/pylint-pytest )
7
+ [ ![ codecov] ( https://codecov.io/gh/pylint-dev/pylint-pytest/graph/badge.svg?token=NhZDLKmomd )] ( https://codecov.io/gh/pylint-dev/pylint-pytest )
7
8
8
9
A Pylint plugin to suppress pytest-related false positives.
9
10
You can’t perform that action at this time.
0 commit comments