aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0286a2e..8e4a78a 100644
--- a/README.md
+++ b/README.md
@@ -82,12 +82,26 @@ docker-compose up
### Running Tests
-Tests are ran through coverage.py using unittest:
+Tests are ran through coverage.py using unittest. Before tests can run, the dev venv Docker image has to be built:
+
+```
+pipenv run builddev
+```
+
+Alternatively, the following command will build the image and then run the tests:
+
+```
+pipenv run testb
+```
+
+If the image doesn't need to be built, the tests can be ran with:
```
pipenv run test
```
+### Coverage
+
To see a coverage report, run
```