From e0c1b2458c4f9ec2a057f9e48899b42812e5daa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Di=20Biase?= Date: Thu, 14 Nov 2024 12:27:12 -0300 Subject: [PATCH] fix: typo pytest filename --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d304420b1..648256e10 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -187,8 +187,8 @@ pytest You can also run specific test files or test cases by providing the file path or test name: ``` -pytest aider/tests/test_coder.py -pytest aider/tests/test_coder.py::TestCoder::test_specific_case +pytest tests/basic/test_coder.py +pytest tests/basic/test_coder.py::TestCoder::test_specific_case ``` #### Continuous Integration