From b4f45e838aff6c095596f86cf2246b50f0d7b770 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 4 Jul 2025 10:05:44 -0700 Subject: [PATCH] add test --- tests/code_coverage_tests/code_qa_check_tests.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/code_coverage_tests/code_qa_check_tests.py b/tests/code_coverage_tests/code_qa_check_tests.py index 14b5c7da87..9dd977a761 100644 --- a/tests/code_coverage_tests/code_qa_check_tests.py +++ b/tests/code_coverage_tests/code_qa_check_tests.py @@ -144,7 +144,11 @@ def main(): """ Main function to check for litellm module deletion patterns in test files. """ - tests_dir = "../../tests/" + # local dir + #tests_dir = "../../tests/" + + # ci/cd dir + tests_dir = "./tests/" problematic_files = check_for_litellm_module_deletion(tests_dir)