summaryrefslogtreecommitdiff
path: root/tests/test_summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-08-18 20:18:38 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-08-18 20:18:38 -0400
commit7cf317f4c0e25acf671e4d633a93d7648d5d219e (patch)
treeb32d24e85b6435bcc91c61a2ccb983c90552c0c2 /tests/test_summary.py
parent804d88e30073e4b04ed61ffcd6daa8614f534d69 (diff)
downloadpython-coveragepy-git-7cf317f4c0e25acf671e4d633a93d7648d5d219e.tar.gz
More bitbucket->github urls
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r--tests/test_summary.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py
index 9513d159..eb25a4d8 100644
--- a/tests/test_summary.py
+++ b/tests/test_summary.py
@@ -131,7 +131,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
self.assertEqual(self.last_line_squeezed(report), "mycode.py 4 0 100%")
def test_run_source_vs_report_include(self):
- # https://bitbucket.org/ned/coveragepy/issues/621/include-ignored-warning-when-using
+ # https://github.com/nedbat/coveragepy/issues/621
self.make_file(".coveragerc", """\
[run]
source = .
@@ -146,7 +146,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
cov.stop() # pragma: nested
def test_run_omit_vs_report_omit(self):
- # https://bitbucket.org/ned/coveragepy/issues/622/report-omit-overwrites-run-omit
+ # https://github.com/nedbat/coveragepy/issues/622
# report:omit shouldn't clobber run:omit.
self.make_mycode()
self.make_file(".coveragerc", """\
@@ -646,7 +646,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
return report
def test_bug_156_file_not_run_should_be_zero(self):
- # https://bitbucket.org/ned/coveragepy/issue/156
+ # https://github.com/nedbat/coveragepy/issues/156
self.make_file("mybranch.py", """\
def branch(x):
if x:
@@ -693,7 +693,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
if not env.WINDOWS:
self.skipTest(".pyw files are only on Windows.")
- # https://bitbucket.org/ned/coveragepy/issue/261
+ # https://github.com/nedbat/coveragepy/issues/261
self.make_file("start.pyw", """\
import mod
print("In start.pyw")