diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-18 10:36:27 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-18 10:36:27 -0500 |
commit | 130ee1e3f0bb1efc1e98c9b668ed91f7fb46ab79 (patch) | |
tree | 28c2a274c7427c53bf885d2be10173278cf543fd /tests/test_process.py | |
parent | e669c22c82991012043423f42c37a4e742c85d76 (diff) | |
download | python-coveragepy-130ee1e3f0bb1efc1e98c9b668ed91f7fb46ab79.tar.gz |
Add a "make smoke" target for a quick test run.
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 81cd5ad..57639db 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -11,6 +11,8 @@ import re import sys import textwrap +import pytest + import coverage from coverage import env, CoverageData from coverage.misc import output_encoding @@ -692,6 +694,7 @@ class ProcessTest(CoverageTest): self.assertEqual(len(infos), 1) self.assertEqual(infos[0]['note'], u"These are musical notes: ♫𝅗𝅥♩") + @pytest.mark.expensive def test_fullcoverage(self): # pragma: not covered if env.PY2: # This doesn't work on Python 2. self.skipTest("fullcoverage doesn't work on Python 2.") |