make test: fix dependencies 17/5017/7
authorKlement Sekera <ksekera@cisco.com>
Fri, 3 Feb 2017 07:18:53 +0000 (08:18 +0100)
committerNeale Ranns <nranns@cisco.com>
Mon, 6 Feb 2017 12:37:16 +0000 (12:37 +0000)
checkstyle - doesn't need scapy/pexpect, remove it
doc - scapy wasn't patched properly, fix it

Change-Id: I65202cb14edeb239d21ce10f17d9b4fccce43d62
Signed-off-by: Klement Sekera <ksekera@cisco.com>
test/Makefile

index 45a0218..7a18be1 100644 (file)
@@ -54,9 +54,9 @@ wipe: reset
        @rm -rf $(PYTHON_VENV_PATH)
        @rm -f $(PAPI_INSTALL_FLAGS)
 
-doc: verify-python-path
+doc: verify-python-path $(PIP_PATCH_DONE)
        @virtualenv $(PYTHON_VENV_PATH) -p python2.7
-       @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS) sphinx sphinx-rtd-theme"
+       @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme"
        @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html"
 
 .PHONY: wipe-doc