Created
March 5, 2018 17:59
-
-
Save ionrock/19e45e0cb093fafd16bdcfab7187f797 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VENV=.venv | |
$(VENV): | |
virtualenv $(VENV) | |
$(VENV)/bin/py.test: $(VENV) | |
$(VENV)/bin/pip install dev_requirements.txt | |
test: $(VENV)/bin/py.test | |
$(VENV)/bin/py.test . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment