Integration test for the build.md file
Change-Id: I93d25f1563636696a5f71471a06056eafee3e9e2
diff --git a/Makefile b/Makefile
index 45dea97..c4855cc 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +73,8 @@
@echo "utest : Run all unit tests"
@echo
-build: utest protos docker-base
+build: protos docker-base
+#build: utest protos docker-base
docker build -t cord/voltha -f Dockerfile.voltha .
docker build -t cord/chameleon -f Dockerfile.chameleon .
@@ -101,8 +102,8 @@
docker pull fluent/fluentd:latest
docker pull gliderlabs/registrator:latest
docker pull ubuntu:xenial
- docker pull wurstmeister/kafka
- docker pull wurstmeister/zookeeper
+ docker pull wurstmeister/kafka:latest
+ docker pull wurstmeister/zookeeper:latest
purge-venv:
rm -fr ${VENVDIR}
@@ -126,7 +127,12 @@
utest: venv
@ echo "Executing all unit tests"
. ${VENVDIR}/bin/activate && \
- nosetests tests
+ nosetests tests --exclude-dir=./tests/itests/
+
+itest: venv
+ @ echo "Executing all integration tests"
+ . ${VENVDIR}/bin/activate && \
+ nosetests tests/itests -s --exclude-dir=./tests/utests/
flake8: $(DIRS_FLAKE8)