diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-15 08:26:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-15 08:26:15 -0400 |
commit | 4db5b177ac5b347f8256cb11ca6ff0d02fc38847 (patch) | |
tree | f695011e70d776280756dde2d0f86f59ef8f383b | |
parent | bb847f0a824febec391ebb8e4f64f859e38459c0 (diff) | |
download | python-coveragepy-git-4db5b177ac5b347f8256cb11ca6ff0d02fc38847.tar.gz |
Make tests finally depends on devinst, so it will just work.
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -24,7 +24,7 @@ lint: clean python /Python25/Lib/tabnanny.py coverage python checkeol.py -tests: $(TEST_ZIP) +tests: $(TEST_ZIP) devinst nosetests $(TEST_ZIP): test/covmodzip1.py @@ -49,7 +49,9 @@ pypi: install: python setup.py install -devinst: +DEVINST_FILE = coverage.egg-info/PKG-INFO +devinst: $(DEVINST_FILE) +$(DEVINST_FILE): python setup.py develop uninstall: |