summaryrefslogtreecommitdiff
path: root/alltests.sh
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-07-20 21:37:50 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-07-20 21:37:50 -0400
commit5504149935b6857f4b4bcab2b038042e222d041c (patch)
treeeaa4e591dbcf6c54b175924ac59d3cd87cc244e7 /alltests.sh
parent822f82f7d0415a1e3c499fb55de5850bf58e5765 (diff)
downloadpython-coveragepy-git-5504149935b6857f4b4bcab2b038042e222d041c.tar.gz
Remove these scripts, supplanted by tox.
Diffstat (limited to 'alltests.sh')
-rwxr-xr-xalltests.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/alltests.sh b/alltests.sh
deleted file mode 100755
index a2d7e373..00000000
--- a/alltests.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env bash
-#
-# To run the tests on many Pythons, create a series of virtualenvs in a
-# sibling directory called "ve". Give the directories there names like
-# "26" for Python 2.6.
-#
-# All the Python installs have a .pth pointing to the egg file created by
-# 2.6, so install the testdata in 2.6
-ve=${COVERAGE_VE:-../ve}
-echo "Testing in $ve"
-source $ve/26/bin/activate
-make --quiet testdata
-
-for v in 23 24 25 26 27 31 32 33
-do
- source $ve/$v/bin/activate
- python setup.py -q develop
- python pybanner.py "with C tracer"
- COVERAGE_TEST_TRACER=c nosetests $@
- python pybanner.py "with Python tracer"
- rm coverage/tracer*.so
- COVERAGE_TEST_TRACER=py nosetests $@
-done
-
-for v in pypy
-do
- source $ve/$v/bin/activate
- python setup.py -q develop
- python pybanner.py "with Python tracer"
- COVERAGE_TEST_TRACER=py nosetests $@
-done
-
-make --quiet clean