From: Klement Sekera Date: Fri, 3 Feb 2017 07:18:53 +0000 (+0100) Subject: make test: fix dependencies X-Git-Tag: v17.04-rc1~253 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=63205141704cb1adafd1b5108f787e640eda71e9;p=vpp.git make test: fix dependencies checkstyle - doesn't need scapy/pexpect, remove it doc - scapy wasn't patched properly, fix it Change-Id: I65202cb14edeb239d21ce10f17d9b4fccce43d62 Signed-off-by: Klement Sekera --- diff --git a/test/Makefile b/test/Makefile index 45a0218ae1c..7a18be1d587 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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