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 | dc3b1ab7788a9d927c9342bfbf7b8cc8e8dfac26 (patch) | |
| tree | 4191b65e421dc1462b3966c6e2f08b17574703ff /Makefile | |
| parent | 44babdc0d5ad5ee9509ce3e75d1d749032984895 (diff) | |
| download | python-coveragepy-dc3b1ab7788a9d927c9342bfbf7b8cc8e8dfac26.tar.gz | |
Make tests finally depends on devinst, so it will just work.
Diffstat (limited to 'Makefile')
| -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: |
