summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-01-29 17:35:27 -0500
committerNed Batchelder <ned@nedbatchelder.com>2011-01-29 17:35:27 -0500
commit677f48454ec2be9908b367fae8b0bc2b3b7a31a1 (patch)
tree26d32f4db1060d12ea766bd5109b4d7f5eb4fb7e
parent0f30ba843ea36905834c3b47e74192ec5e32eee6 (diff)
downloadpython-coveragepy-git-677f48454ec2be9908b367fae8b0bc2b3b7a31a1.tar.gz
At last, all the tests pass on all versions of Python.
-rw-r--r--Makefile1
-rwxr-xr-xalltests.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0cacaccb..978d4051 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ clean:
python test/test_farm.py clean
-rm -rf build coverage.egg-info dist htmlcov
-rm -f *.pyd */*.pyd
+ -rm -f *.so */*.so
-rm -f *.pyc */*.pyc */*/*.pyc */*/*/*.pyc */*/*/*/*.pyc */*/*/*/*/*.pyc
-rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo
-rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak
diff --git a/alltests.sh b/alltests.sh
index 79c3f1d7..c6cae5b2 100755
--- a/alltests.sh
+++ b/alltests.sh
@@ -16,7 +16,7 @@ do
echo "=== $v c ==="
COVERAGE_TEST_TRACER=c nosetests $@
echo "=== $v py ==="
- rm coverage/tracer.so
+ rm coverage/tracer*.so
COVERAGE_TEST_TRACER=py nosetests $@
done