Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add make install as default target #594

Merged
merged 1 commit into from
Nov 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# We assume an active virtualenv for development
install:
-@python3 setup.py -q develop --upgrade

clean: nondocs-clean docs-clean

nondocs-clean:
Expand Down Expand Up @@ -53,4 +57,4 @@ docker-it: nondocs-clean python-caches-clean
docker-compose build --pull; `# add --pull here to rebuild a fresh image` \
docker-compose run --rm rally-tests /bin/bash -c "make docs-clean && make it"

.PHONY: clean nondocs-clean docs-clean python-caches-clean docs test docker-it it it34 it35 it36 benchmark coverage release release-checks
.PHONY: install clean nondocs-clean docs-clean python-caches-clean docs test docker-it it it34 it35 it36 benchmark coverage release release-checks