Skip to content

Commit

Permalink
Make virtualenv more quietly
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhay Saxena committed May 28, 2020
1 parent 97c9792 commit 2324b1c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ DIRFAIL = { r=$$?; rm -rf $@; exit $$r; }
virtualenv: dev-requirements.txt k8s-proxy/requirements.txt ## Set up Python3 virtual environment for development
rm -rf $@ || true
python3 -m venv $@ || $(DIRFAIL)
$(PIP) install -U pip || $(DIRFAIL)
$(PIP) install -r dev-requirements.txt || $(DIRFAIL)
$(PIP) install -r k8s-proxy/requirements.txt || $(DIRFAIL)
$(PIP) install setuptools_scm || $(DIRFAIL) # Ensure subsequent line executes without error on macos
$(PIP) install git+https://github.com/datawire/sshuttle.git@telepresence || $(DIRFAIL)
$(PIP) install --no-use-pep517 -e . || $(DIRFAIL)
$(PIP) install -q -U pip || $(DIRFAIL)
$(PIP) install -q -r dev-requirements.txt || $(DIRFAIL)
$(PIP) install -q -r k8s-proxy/requirements.txt || $(DIRFAIL)
$(PIP) install -q setuptools_scm || $(DIRFAIL) # Ensure subsequent line executes without error on macos
$(PIP) install -q git+https://github.com/datawire/sshuttle.git@telepresence || $(DIRFAIL)
$(PIP) install -q --no-use-pep517 -e . || $(DIRFAIL)

lint: virtualenv ## Run the linters used by CI (implies 'virtualenv')
./tools/license-check
Expand Down

0 comments on commit 2324b1c

Please sign in to comment.