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 | 94879879cf56b9f5bc7e715e91e1086cde23b69b (patch) | |
tree | e10a6fcac32b80dfc546c1d59febd4970473bcf1 /tests/test_process.py | |
parent | db5700cbe52f4f424a4c125418670d7d8109e441 (diff) | |
download | python-coveragepy-git-94879879cf56b9f5bc7e715e91e1086cde23b69b.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 81cd5ade..57639db7 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.") |