From 3fe061bcef7539e84a62948cd9cd0ced4dd2a782 Mon Sep 17 00:00:00 2001 From: Russ Biggs Date: Tue, 4 Feb 2025 09:36:27 -0700 Subject: [PATCH] remove junit attempts, check skip, lintr skip, covr skip --- .github/workflows/test-coverage.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 178da96..911485e 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -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} @@ -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