We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72acdf7 commit b015b75Copy full SHA for b015b75
1 file changed
Makefile
@@ -15,6 +15,9 @@ $(shell kubectl get rc deis-$(COMPONENT) --namespace deis -o yaml > /tmp/deis-$(
15
DESIRED_REPLICAS=$(shell kubectl get -o template rc/deis-$(COMPONENT) --template={{.status.replicas}} --namespace deis)
16
endif
17
18
+# Test processes used in quick unit testing
19
+TEST_PROCS ?= 4
20
+
21
check-docker:
22
@if [ -z $$(which docker) ]; then \
23
echo "Missing \`docker\` client which is required for development"; \
@@ -67,6 +70,10 @@ test-unit:
67
70
&& coverage run manage.py test --noinput registry api \
68
71
&& coverage report -m
69
72
73
+test-unit-quick:
74
+ cd rootfs \
75
+ && ./manage.py test --noinput --parallel ${TEST_PROCS} --noinput registry api
76
77
test-functional:
78
@echo "Implement functional tests in _tests directory"
79
0 commit comments