From d16acb9374ffe311aefb0fd1dd3f1b28bf69c75e Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:11:11 +0300 Subject: [PATCH] ci: disable code rabbit for tests (#505) (#506) * ci: disable code rabbit for tests * new line * test changes * updates (cherry picked from commit 828fbb594b62a318342db3681ec60d9769b0b9ee) Co-authored-by: Roman --- .coderabbit.yaml | 6 ++++++ router/usecase/quote_test.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..2a5fd349 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,6 @@ +reviews: + # Ignore test files + path_filters: + - "!**/*_test.go" + # Disable review status notification + review_status: false diff --git a/router/usecase/quote_test.go b/router/usecase/quote_test.go index a0c1a36d..a5fb5fa0 100644 --- a/router/usecase/quote_test.go +++ b/router/usecase/quote_test.go @@ -35,8 +35,8 @@ var ( // // The test structure is as follows: // - Set up a 50-50 split route -// Route 1: 2 hop -// Route 2: 1 hop +// - Route 1: 2 hop +// - Route 2: 1 hop // // Validate that the effective swap fee is computed correctly. func (s *RouterTestSuite) TestPrepareResult() {