Skip to content

Commit

Permalink
remove junit attempts, check skip, lintr skip, covr skip
Browse files Browse the repository at this point in the history
  • Loading branch information
russbiggs committed Feb 4, 2025
1 parent bd9ddd9 commit 3fe061b
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,7 @@ jobs:
cov <- covr::package_coverage(
quiet = FALSE,
clean = FALSE,
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package"),
type = "none",
code = "testthat::test_package(
'openaq',
reporter = testthat::JunitReporter$new(file = 'junit.xml')
)
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
)
covr::to_cobertura(cov)
shell: Rscript {0}
Expand All @@ -65,10 +60,3 @@ jobs:
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./junit.xml

0 comments on commit 3fe061b

Please sign in to comment.