From 2543f2eb581384a368b4d52a9401ebca0f7815e5 Mon Sep 17 00:00:00 2001 From: Bart <11445373+bthomee@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:23:57 -0500 Subject: [PATCH] Exclude scripts and example code from Codecov --- .codecov.yml | 6 ++++-- .github/workflows/on-pr.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.codecov.yml b/.codecov.yml index cd52e2604d..2cf202d8a0 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -32,7 +32,9 @@ parsers: slack_app: false ignore: - - "src/test/" - - "src/tests/" + - ".github/scripts/" - "include/xrpl/beast/test/" - "include/xrpl/beast/unit_test/" + - "src/test/" + - "src/tests/" + - "tests/" diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index 683adbb89a..1b87eb10dd 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -115,7 +115,7 @@ jobs: platform: [linux, macos, windows] with: platform: ${{ matrix.platform }} - trigger: commit + trigger: schedule secrets: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}