From 154a34aa1aa2955217e0c43989dee5b538e80491 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 16 Nov 2022 11:29:56 -0600 Subject: [PATCH 1/3] Enable code coverage --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fe2bfde7b4..4d23df23f9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,3 +30,7 @@ jobs: - name: Test run: ./.github/r-ci.sh run_tests + + - name: Coverage + if: ${{ matrix.os == 'ubuntu-latest' }} + run: ./.github/r-ci.sh coverage From ef1b2686a54fe0120a3bccfc027af02292683c27 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 16 Nov 2022 13:59:26 -0600 Subject: [PATCH 2/3] Add codecov.yml to exclude headers from TileDB Core --- codecov.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000000..c4a9871e2f --- /dev/null +++ b/codecov.yml @@ -0,0 +1,2 @@ +ignore: + - "inst/tiledb/" # ignore headers from TileDB Core brought in via artifact From e65ca04bc02be59f29346bf9cb11469762e5c7a1 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 16 Nov 2022 19:50:05 -0600 Subject: [PATCH 3/3] Tweak codecov --- codecov.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codecov.yml b/codecov.yml index c4a9871e2f..d0066f41cf 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,2 +1,4 @@ +comment: false + ignore: - - "inst/tiledb/" # ignore headers from TileDB Core brought in via artifact + - "inst/tiledb/"