You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add input for skipping full covered files from xml (#186)
* formatting xml-skip-covered related files
* 1.1.53
* Add option to skip fully covered lines based on xml report
* Update @actions/core to version 1.11.1
* Update devDependencies in package.json
* update changelog
* Update dependabot configuration to allow minor and patch updates for npm development and production dependencies
---------
Co-authored-by: Nikita Terentyev <[email protected]>
- add option `xml-skip-covered` to skip lines that covered for 100% based on xml report, thanks to [@NikTerentev](https://github.com/NikTerentev) for contribution
10
+
- bump dev dependencies and minor for `@actions/core`
| `github-token` | ✓ | `${{github.token}}` | An alternative GitHub token, other than the default provided by GitHub Actions runner |
35
-
| `issue-number` | | '' | PR Number where you'd like your comments to be posted to. Required to post a comment when running the workflow on an event that isn't `push` or `pull-request` . |
35
+
| `issue-number` | | '' | PR Number where you'd like your comments to be posted to. Required to post a comment when running the workflow on an event that isn't `push` or `pull-request` . |
36
36
| `pytest-coverage-path` | | `./pytest-coverage.txt` | The location of the txt output of pytest-coverage. Used to determine coverage percentage |
37
37
| `pytest-xml-coverage-path` | | '' | The location of coverage-xml from pytest-coverage (--cov-report "xml:coverage.xml) |
38
38
| `coverage-path-prefix` | | '' | Prefix for path when link to files in comment |
@@ -45,7 +45,8 @@ You can add this action to your GitHub workflow for Ubuntu runners (e.g. runs-on
45
45
| `junitxml-title` | | '' | Title for summary for junitxml |
46
46
| `create-new-comment` | | false | When false, will update the same comment, otherwise will publish new comment on each run. |
47
47
| `hide-comment` | | false | Hide the whole comment (use when you need only the `output`). Useful for auto-update bagdes in readme. See the [workflow](../main/.github/workflows/live-test.yml) for example |
48
-
| `default-branch` | | `main` | This branch name is useful when generate "coverageHtml", it points direct links to files on this branch (instead of commit).<br/>Usually "main" or "master" |
48
+
| `xml-skip-covered` | | false | Hide files from xml report with 100% coverage |
49
+
| `default-branch` | | `main` | This branch name is useful when generate "coverageHtml", it points direct links to files on this branch (instead of commit).<br/>Usually "main" or "master" |
49
50
| `multiple-files` | | '' | You can pass array of titles and files to generate single comment with table of results.<br/>Single line should look like `Title, ./path/to/pytest-coverage.txt, ./path/to/pytest-junit.xml`<br/> example:<br/> `My Title 1, ./data/pytest-coverage_3.txt, ./data/pytest_1.xml`<br/>**Note:** In that mode the `output` for `coverage` and `color` will be for the first file only. |
50
51
| `remove-link-from-badge` | | false | When true, it will remove the link from badge to readme |
51
52
| `unique-id-for-comment` | | '' | When running in a matrix, pass the matrix value, so each comment will be updated its own comment `unique-id-for-comment: ${{ matrix.python-version }}` |
0 commit comments