Skip to content

Commit 03279a3

Browse files
author
Matthew Fisher
committed
fix(controller): install dev_requirements
some packages in dev_requirements.txt are required for the test suite (such as mock).
1 parent 182a990 commit 03279a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test: test-unit test-functional
4848

4949
test-unit:
5050
@if [ ! -d venv ]; then virtualenv venv; fi
51-
venv/bin/pip install -q -r requirements.txt
51+
venv/bin/pip install -q -r requirements.txt -r dev_requirements.txt
5252
venv/bin/python manage.py test --noinput api
5353

5454
test-functional:

0 commit comments

Comments
 (0)