diff options
-rw-r--r-- | CHANGES.rst | 4 | ||||
-rw-r--r-- | README.rst | 8 | ||||
-rw-r--r-- | doc/cmd.rst | 2 | ||||
-rw-r--r-- | doc/config.rst | 2 | ||||
-rw-r--r-- | doc/faq.rst | 6 | ||||
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | setup.py | 2 |
7 files changed, 13 insertions, 13 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 98851676..97a7247e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -411,7 +411,7 @@ Work from the PyCon 2016 Sprints! - The `test_helpers` module has been moved into a separate pip-installable package: `unittest-mixins`_. -.. _automatic subprocess measurement: http://coverage.readthedocs.io/en/latest/subprocess.html +.. _automatic subprocess measurement: https://coverage.readthedocs.io/en/latest/subprocess.html .. _issue 199: https://bitbucket.org/ned/coveragepy/issues/199/add-a-way-to-sort-the-text-report .. _issue 231: https://bitbucket.org/ned/coveragepy/issues/231/various-default-behavior-in-report-phase .. _issue 298: https://bitbucket.org/ned/coveragepy/issues/298/show-in-html-report-that-the-columns-are @@ -1339,7 +1339,7 @@ Version 3.5.3 --- 2012-09-29 .. _issue 194: https://bitbucket.org/ned/coveragepy/issues/194/filelocatorrelative_filename-could-mangle .. _issue 195: https://bitbucket.org/ned/coveragepy/issues/195/pyo-file-handling-in-codeunit .. _issue 197: https://bitbucket.org/ned/coveragepy/issues/197/line-numbers-in-html-report-do-not-align -.. _tox: http://tox.readthedocs.io/ +.. _tox: https://tox.readthedocs.io/ .. _changes_352: @@ -27,7 +27,7 @@ Coverage.py runs on many versions of Python: Documentation is on `Read the Docs`_. Code repository and issue tracker are on `Bitbucket`_, with a mirrored repository on `GitHub`_. -.. _Read the Docs: http://coverage.readthedocs.io +.. _Read the Docs: https://coverage.readthedocs.io/ .. _Bitbucket: https://bitbucket.org/ned/coveragepy .. _GitHub: https://github.com/nedbat/coveragepy @@ -50,7 +50,7 @@ Getting Started See the `Quick Start section`_ of the docs. -.. _Quick Start section: http://coverage.readthedocs.io/#quick-start +.. _Quick Start section: https://coverage.readthedocs.io/#quick-start Contributing @@ -58,7 +58,7 @@ Contributing See the `Contributing section`_ of the docs. -.. _Contributing section: http://coverage.readthedocs.io/en/latest/contributing.html +.. _Contributing section: https://coverage.readthedocs.io/en/latest/contributing.html License @@ -77,7 +77,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_. :target: https://ci.appveyor.com/project/nedbat/coveragepy :alt: Windows build status .. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat - :target: http://coverage.readthedocs.io + :target: https://coverage.readthedocs.io/ :alt: Documentation .. |reqs| image:: https://requires.io/github/nedbat/coveragepy/requirements.svg?branch=master :target: https://requires.io/github/nedbat/coveragepy/requirements/?branch=master diff --git a/doc/cmd.rst b/doc/cmd.rst index 8dbe56e3..ef4c1135 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -114,7 +114,7 @@ the processes that multiprocessing creates. Best practice is to use the configuration file for all options. .. _multiprocessing: https://docs.python.org/3/library/multiprocessing.html -.. _greenlet: http://greenlet.readthedocs.io/en/latest/ +.. _greenlet: https://greenlet.readthedocs.io/ .. _gevent: http://www.gevent.org/ .. _eventlet: http://eventlet.net/ diff --git a/doc/config.rst b/doc/config.rst index 75803bd5..e6275499 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -114,7 +114,7 @@ libraries in use by the product code. If your program uses `multiprocessing`_, option, or coverage.py will produce very wrong results. .. _multiprocessing: https://docs.python.org/3/library/multiprocessing.html -.. _greenlet: http://greenlet.readthedocs.io/en/latest/ +.. _greenlet: https://greenlet.readthedocs.io/ .. _gevent: http://www.gevent.org/ .. _eventlet: http://eventlet.net/ diff --git a/doc/faq.rst b/doc/faq.rst index ef7e8723..f6085b61 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -27,7 +27,7 @@ coverage.py's documentation. Additionally nose and its coverage plugin are unmaintained at this point, so they aren't receiving any fixes or other updates. -__ http://nose.readthedocs.io/en/latest/plugins/cover.html +__ https://nose.readthedocs.io/en/latest/plugins/cover.html **Q: How do I run nosetests under coverage.py with tox?** @@ -42,7 +42,7 @@ $(which nosetests)`` doesn't work in tox.ini because tox doesn't handle the shell command substitution. Tox's `string substitution`__ shown above does the trick. -__ http://tox.readthedocs.io/en/latest/config.html#substitutions +__ https://tox.readthedocs.io/en/latest/config.html#substitutions **Q: I use nose to run my tests, and its coverage plugin doesn't let me create @@ -52,7 +52,7 @@ First run your tests and collect coverage data with `nose`_ and its plugin. This will write coverage data into a .coverage file. Then run coverage.py from the :ref:`command line <cmd>` to create the reports you need from that data. -.. _nose: http://nose.readthedocs.io +.. _nose: https://nose.readthedocs.io/ **Q: Why do unexecutable lines show up as executed?** diff --git a/doc/index.rst b/doc/index.rst index b3987ac6..62b748f7 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -165,7 +165,7 @@ parts that you know aren't interesting. See :ref:`source` and :ref:`excluding` for details. .. _pytest: http://doc.pytest.org -.. _pytest-cov: http://pytest-cov.readthedocs.io +.. _pytest-cov: https://pytest-cov.readthedocs.io/ .. _contact: @@ -50,7 +50,7 @@ with open(cov_ver_py) as version_file: exec(compile(version_file.read(), cov_ver_py, 'exec')) with open("README.rst") as readme: - long_description = readme.read().replace("http://coverage.readthedocs.io", __url__) + long_description = readme.read().replace("https://coverage.readthedocs.io", __url__) with open("CONTRIBUTORS.txt", "rb") as contributors: paras = contributors.read().split(b"\n\n") |