We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make test
1 parent c29d29e commit 7e6f776Copy full SHA for 7e6f776
1 file changed
Makefile
@@ -31,9 +31,6 @@ clean: uninstall
31
full-clean: clean
32
$(call ssh_all,'sudo docker rmi deis/controller')
33
34
-test:
35
- python manage.py test --noinput api
36
-
37
runserver:
38
python manage.py runserver
39
@@ -46,3 +43,13 @@ coverage:
46
43
47
44
flake8:
48
45
flake8
+
+test: test-unit test-functional
49
+test-unit:
50
+ @if [ ! -d venv ]; then virtualenv venv; fi
51
+ venv/bin/pip install -q -r requirements.txt
52
+ venv/bin/python manage.py test --noinput api
53
54
+test-functional:
55
+ @echo no functional tests
0 commit comments