From 0add19b9ce815b10aaff11312b78abac7be8af8e Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Fri, 1 Nov 2024 16:03:34 -0700 Subject: [PATCH] fix: More Coderabbit tuning --- .coderabbit.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index fc524c4ad..0d7e37af9 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -15,16 +15,18 @@ reviews: sequence_diagrams: true changed_files_summary: true labeling_instructions: [] - path_filters: - - 'src/**/*.cpp' - - 'include/**/*.hpp' + path_filters: [] path_instructions: - path: 'src/**/*.cpp' instructions: 'Focus on performance, memory management, and RAII principles' - path: 'include/**/*.hpp' instructions: 'Focus on design patterns, interfaces, and encapsulation' - path: 'test/**/*.cpp' - instructions: 'Ensure comprehensive test coverage and proper test organization' + instructions: | + Review the following unit test code written using doctest. Ensure the following: + - Comprehensive test coverage and proper test organization. + - The code adheres to best practices using doctest. + - Descriptive test names are used to clearly convey the intent of each test. abort_on_close: true auto_review: enabled: true