From 344d51ccedd6c978c0f414b9e669329db47f347e Mon Sep 17 00:00:00 2001 From: Daniel Mitterdorfer Date: Wed, 14 Nov 2018 14:31:16 +0100 Subject: [PATCH] Simplify development setup With this commit we amend the `make install` command to also include development dependencies so developers don't need to perform this step manually when setting up Rally. However, this is only a workaround and should be properly addressed by #439. Relates #439 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index dc1d7ae17..783a2e80d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ # We assume an active virtualenv for development install: -@python3 setup.py -q develop --upgrade + # also install development dependencies + # workaround for https://github.com/elastic/rally/issues/439 + -@pip3 install -q sphinx sphinx_rtd_theme clean: nondocs-clean docs-clean