From 17718f2c91d13a674fd4c5b93ffb0501ad411db6 Mon Sep 17 00:00:00 2001 From: Siddharth Sahu <112792547+sahusiddharth@users.noreply.github.com> Date: Wed, 14 Aug 2024 10:34:52 +0530 Subject: [PATCH] Fix test command in development.md to match Makefile configuration (#1195) The development.md file previously suggested using make tests to run the tests. However, the [Makefile](https://github.com/explodinggradients/ragas/blob/main/Makefile#L28C1-L28C19) does not include a target named tests, which results in the error make: Nothing to be done for 'tests'. This commit updates the documentation to reflect the correct command for running tests, ensuring alignment with the existing Makefile configuration. --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 05b374bba..fb1da5af6 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -62,7 +62,7 @@ make run-ci To run the test suite: ```bash -make tests +make test ``` ## Documentation