Completely automate my pre-release testing routine

This Makefile completely automates my pre-release testing routine which typically occurs only in Python 2.7, but gives me a "good enough" view of the status quo.
This commit is contained in:
Alex Clark 2014-06-29 08:04:58 -04:00
parent 4417569195
commit 8534e67546

View File

@ -1,4 +1,6 @@
pre:
virtualenv .
bin/pip install -r requirements.txt
bin/python setup.py develop
bin/python selftest.py
bin/nosetests Tests/test_*.py