summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-10-30 08:15:59 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-10-30 08:15:59 -0400
commit583e3987a3bea627acd4ff737abf1ee9a000fcf4 (patch)
tree60ef900c44c172d152f65481321fdaee785ef000
parentf43d4a022bc6d1d07c68c93f827eebf90a6bb0f4 (diff)
downloadpython-coveragepy-git-583e3987a3bea627acd4ff737abf1ee9a000fcf4.tar.gz
Run all tests
-rw-r--r--tests/test_concurrency.py2
-rw-r--r--tox.ini4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py
index 07f62bd9..9c1edc36 100644
--- a/tests/test_concurrency.py
+++ b/tests/test_concurrency.py
@@ -494,7 +494,7 @@ class MultiprocessingTest(CoverageTest):
self.assertIn("Exception during multiprocessing bootstrap init", out)
self.assertIn("Exception: Crashing because called by _bootstrap", out)
- def xxxx_bug890(self):
+ def test_bug890(self):
# chdir in multiprocessing shouldn't keep us from finding the
# .coveragerc file.
self.make_file("multi.py", """\
diff --git a/tox.ini b/tox.ini
index e5fb19c7..077689d0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -41,11 +41,11 @@ commands =
python igor.py zip_mods install_egg remove_extension
# Test with the PyTracer
- python igor.py test_with_tracer py -n0 -vv -s -k multi {posargs}
+ python igor.py test_with_tracer py {posargs}
# Build the C extension and test with the CTracer
python setup.py --quiet build_ext --inplace
- python igor.py test_with_tracer c -n0 -vv -k multi {posargs}
+ python igor.py test_with_tracer c {posargs}
[testenv:anypy]
# For running against my own builds of CPython, or any other specific Python.