summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-11-04 15:01:23 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-11-04 15:01:23 -0400
commit52a691531e3c290e2e8d664878145c67a04bfd45 (patch)
treec013b52ad920a15d8759e27d6d709dcc1dff6387
parent98d1092907358c5c9adc03de20e2b35db8c3af3c (diff)
downloadpython-coveragepy-git-52a691531e3c290e2e8d664878145c67a04bfd45.tar.gz
Point 'home page' on pypi to bitbucket
-rw-r--r--igor.py2
-rw-r--r--setup.py2
-rw-r--r--tests/test_setup.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/igor.py b/igor.py
index 2e8bab3d..83ed229d 100644
--- a/igor.py
+++ b/igor.py
@@ -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))
diff --git a/setup.py b/setup.py
index f16e2fb5..4719e7af 100644
--- a/setup.py
+++ b/setup.py
@@ -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):