From 149dac8e5b047817f6e949dc2a3a4c77a0a9ad1f Mon Sep 17 00:00:00 2001 From: Graham Neubig Date: Mon, 15 Jul 2024 16:28:02 -0400 Subject: [PATCH] Run all tests in development.md (#2951) This PR changes the directions in development.md to run all tests. Note that I opted to explicitly specify `test_*.py` instead of doing test discovery so it's obvious that you can also specify specific files. --- Development.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Development.md b/Development.md index 302d0b17df..69c6d03dc0 100644 --- a/Development.md +++ b/Development.md @@ -84,10 +84,11 @@ make help ``` ### 8. Testing +To run tests, refer to the following: #### Unit tests ```bash -poetry run pytest ./tests/unit/test_sandbox.py +poetry run pytest ./tests/unit/test_*.py ``` #### Integration tests