Commit 8bf8a695de2779f0f2a651892c1d934f384d377d
1 parent
d6c40f12
Avoid examples in coverage
Showing
2 changed files
with
2 additions
and
2 deletions
.ci/run_codecov.sh
| @@ -7,7 +7,7 @@ cmake --build . -- -j2 | @@ -7,7 +7,7 @@ cmake --build . -- -j2 | ||
| 7 | cmake --build . --target CLI_coverage | 7 | cmake --build . --target CLI_coverage |
| 8 | 8 | ||
| 9 | lcov --directory . --capture --output-file coverage.info # capture coverage info | 9 | lcov --directory . --capture --output-file coverage.info # capture coverage info |
| 10 | -lcov --remove coverage.info '*/tests/*' '*gtest*' '*gmock*' '/usr/*' --output-file coverage.info # filter out system | 10 | +lcov --remove coverage.info '*/tests/*' '*/examples/*' '*gtest*' '*gmock*' '/usr/*' --output-file coverage.info # filter out system |
| 11 | lcov --list coverage.info #debug info | 11 | lcov --list coverage.info #debug info |
| 12 | # Uploading report to CodeCov | 12 | # Uploading report to CodeCov |
| 13 | bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" | 13 | bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" |
CHANGELOG.md
| @@ -3,7 +3,7 @@ | @@ -3,7 +3,7 @@ | ||
| 3 | * Added simple support for enumerations, allow non-printable objects [#12](https://github.com/CLIUtils/CLI11/issues/12) | 3 | * Added simple support for enumerations, allow non-printable objects [#12](https://github.com/CLIUtils/CLI11/issues/12) |
| 4 | * Added `app.parse_order()` with original parse order ([#13](https://github.com/CLIUtils/CLI11/issues/13), [#16](https://github.com/CLIUtils/CLI11/pull/16)) | 4 | * Added `app.parse_order()` with original parse order ([#13](https://github.com/CLIUtils/CLI11/issues/13), [#16](https://github.com/CLIUtils/CLI11/pull/16)) |
| 5 | * Added `prefix_command()`, which is like `allow_extras` but instantly stops and returns. ([#8](https://github.com/CLIUtils/CLI11/issues/8), [#17](https://github.com/CLIUtils/CLI11/pull/17)) | 5 | * Added `prefix_command()`, which is like `allow_extras` but instantly stops and returns. ([#8](https://github.com/CLIUtils/CLI11/issues/8), [#17](https://github.com/CLIUtils/CLI11/pull/17)) |
| 6 | -* Removed Windows error ([#10](https://github.com/CLIUtils/CLI11/issues/10), [#20](https://github.com/CLIUtils/CLI11/pull/20)) | 6 | +* Removed Windows warning ([#10](https://github.com/CLIUtils/CLI11/issues/10), [#20](https://github.com/CLIUtils/CLI11/pull/20)) |
| 7 | * Some improvements to CMake, detect Python and no dependencies on Python 2 (like Python 3) ([#18](https://github.com/CLIUtils/CLI11/issues/18), [#21](https://github.com/CLIUtils/CLI11/pull/21)) | 7 | * Some improvements to CMake, detect Python and no dependencies on Python 2 (like Python 3) ([#18](https://github.com/CLIUtils/CLI11/issues/18), [#21](https://github.com/CLIUtils/CLI11/pull/21)) |
| 8 | 8 | ||
| 9 | ## Version 1.0 | 9 | ## Version 1.0 |