From 5c5b0a96fa1e165f8e3c5f8f6123a7f12151c4a1 Mon Sep 17 00:00:00 2001 From: Hunter Turcin Date: Thu, 31 Oct 2024 20:45:43 -0500 Subject: [PATCH] Add note on how to run just one module's tests --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 635bac113..f3f939b15 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,18 @@ Weasyl should now be running at ! Several account ## Running tests +To run all tests: + ```shell ./wzl test ``` +To run only a specific module's tests, such as `weasyl.test.test_api`: + +```shell +./wzl test pytest -x weasyl.test.test_api +``` + ## Making migrations