Skip to content

Commit

Permalink
Merge pull request #14 from stdedos/test/impr-action+coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
stdedos committed Oct 18, 2023
2 parents 163ac3a + 0b1bb86 commit 55e4218
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -59,5 +63,13 @@ jobs:
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.os }},${{ matrix.python-version }}
fail_ci_if_error: true
files: test_artifacts/cobertura.xml

- name: Create artifacts
uses: actions/upload-artifact@v3
if: ${{ !cancelled() }}
with:
name: test-artifacts_${{ matrix.os }}_${{ matrix.python-version }}
path: test_artifacts/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
![PyPI - Downloads](https://img.shields.io/pypi/dd/pylint-pytest)
![PyPI - Version](https://img.shields.io/pypi/v/pylint-pytest)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pylint-pytest)
[![codecov](https://codecov.io/gh/pylint-dev/pylint-pytest/graph/badge.svg?token=NhZDLKmomd)](https://codecov.io/gh/pylint-dev/pylint-pytest)

A Pylint plugin to suppress pytest-related false positives.

Expand Down

0 comments on commit 55e4218

Please sign in to comment.