diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-11-04 15:01:23 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-11-04 15:01:23 -0400 |
commit | 52a691531e3c290e2e8d664878145c67a04bfd45 (patch) | |
tree | c013b52ad920a15d8759e27d6d709dcc1dff6387 | |
parent | 98d1092907358c5c9adc03de20e2b35db8c3af3c (diff) | |
download | python-coveragepy-git-52a691531e3c290e2e8d664878145c67a04bfd45.tar.gz |
Point 'home page' on pypi to bitbucket
-rw-r--r-- | igor.py | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tests/test_setup.py | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -318,7 +318,7 @@ def print_banner(label): try: which_python = os.path.relpath(sys.executable) except ValueError: - # On Windows having a python executable on a different drives + # On Windows having a python executable on a different drive # than the sources cannot be relative. which_python = sys.executable print('=== %s %s %s (%s) ===' % (impl, version, label, which_python)) @@ -104,7 +104,7 @@ setup_args = dict( keywords='code coverage testing', license='Apache 2.0', classifiers=classifier_list, - url=__url__, + url="https://bitbucket.org/ned/coveragepy", ) # A replacement for the build_ext command which raises a single exception diff --git a/tests/test_setup.py b/tests/test_setup.py index 6533418a..78fcefc9 100644 --- a/tests/test_setup.py +++ b/tests/test_setup.py @@ -27,8 +27,8 @@ class SetupPyTest(CoverageTest): self.assertEqual(status, 0) out = output.splitlines() self.assertIn("measurement", out[0]) - self.assertEqual(out[1], coverage.__version__) - self.assertEqual(out[2], coverage.__url__) + self.assertEqual(coverage.__version__, out[1]) + self.assertIn("bitbucket.org/ned/coveragepy", out[2]) self.assertIn("Ned Batchelder", out[3]) def test_more_metadata(self): |