From f6b3676bb390f4a829d6f420a5c1d8d449ae573b Mon Sep 17 00:00:00 2001 From: Clemens Wolff Date: Wed, 22 May 2019 11:53:00 -0400 Subject: [PATCH] Document how to run tests --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 93430988..0f74213f 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,12 @@ Next we need to create a user who can login to the admin site. Run the following python manage.py create_admin --noinput --username "admin" --email "admin@example.com" --password "password" ``` +Developers can also validate that the project works as expected by running the tests: + +```bash +python manage.py test server.tests +``` + Finally, to start the server, run the following command: ```bash