summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-02-20 19:52:01 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-02-20 19:52:01 -0500
commit9c44c8da0538f985e17dd56637fdcab0354f8fc8 (patch)
treec7bac3cba4e87457b0528b755a042c91fc6056f3
parent22045a0580c9a2f901724120957be2b6748db766 (diff)
parentfd647ef06318d9a3c323770976350231c3d36a32 (diff)
downloadpython-coveragepy-9c44c8da0538f985e17dd56637fdcab0354f8fc8.tar.gz
Use https for codecov.io image
-rw-r--r--CONTRIBUTORS.txt1
-rw-r--r--tests/test_api.py2
-rw-r--r--tests/test_process.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 52cedc0..68f189c 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -80,6 +80,7 @@ Mickie Betz
Nathan Land
Noel O'Boyle
Olivier Grisel
+Ori Avtalion
Pablo Carballo
Patrick Mezard
Peter Baughman
diff --git a/tests/test_api.py b/tests/test_api.py
index 7c2672d..feb8b2e 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -582,7 +582,7 @@ class SourceOmitIncludeTest(OmitIncludeTestsMixin, CoverageTest):
cov = coverage.Coverage(source=["pkg1"], include=["pkg2"])
with self.assert_warnings(cov, ["--include is ignored because --source is set"]):
cov.start()
- cov.stop()
+ cov.stop() # pragma: nested
def test_source_package_as_dir(self):
# pkg1 is a directory, since we cd'd into tests/modules in setUp.
diff --git a/tests/test_process.py b/tests/test_process.py
index 70329b5..85adcf4 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -767,7 +767,7 @@ class EnvironmentTest(CoverageTest):
self.assert_tryexecfile_output(out_cov, out_py)
def test_coverage_run_dir_is_like_python_dir(self):
- if sys.version_info == (3, 5, 4, 'final', 0):
+ if sys.version_info == (3, 5, 4, 'final', 0): # pragma: not covered
self.skipTest("3.5.4 broke this: https://bugs.python.org/issue32551")
with open(TRY_EXECFILE) as f:
self.make_file("with_main/__main__.py", f.read())