From 0b9c040fcf457c01d27bf36a6d8761b3476ba052 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Fri, 10 Mar 2023 20:11:22 +0900 Subject: [PATCH] Add .codecov.yml with checks disabled (#30666) * Add .codecov.yml with checks disabled * Trigger test-coverage.sh... --- .codecov.yml | 14 ++++++++++++++ runtime/src/bank.rs | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .codecov.yml diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000000..cdee638547 --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,14 @@ +comment: + behavior: default + layout: diff + require_changes: false +coverage: + precision: 1 + range: + - 50.0 + - 100.0 + round: down + status: + patch: false + project: false +github_checks: false diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index db61e8adeb..0fb53bfc14 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -13,7 +13,7 @@ //! //! The bank then stores the results to the accounts store. //! -//! It then has apis for retrieving if a transaction has been processed and it's status. +//! It then has APIs for retrieving if a transaction has been processed and it's status. //! See `get_signature_status` et al. //! //! Bank lifecycle: