From c4b62b362fb298bac20c088690933e9f19688c94 Mon Sep 17 00:00:00 2001 From: emreumar Date: Sat, 18 Jul 2026 19:52:12 +0300 Subject: [PATCH] docs(contributing): correct test directory reference from test/ to tests/ Signed-off-by: emreumar --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 399a9b5..e97ea54 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,7 +19,7 @@ beginners, so do not hesitate to ask questions by opening an issue. ``` 4. Run the **tests** to make sure everything works: ```bash - pytest test/ -v + pytest tests/ -v ``` ## Making Changes @@ -31,7 +31,7 @@ beginners, so do not hesitate to ask questions by opening an issue. 2. Make your changes. Keep commits small and focused. 3. Run the tests again to verify nothing is broken: ```bash - pytest test/ -v + pytest tests/ -v ``` 4. **Commit** with a clear message: ```bash