summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNed Batchelder <nedbat@gmail.com>2018-01-06 22:12:15 +0000
committerNed Batchelder <nedbat@gmail.com>2018-01-06 22:12:15 +0000
commit7ae3630eac78ca4ba3ccbf84d4b1bef61fcaa8c5 (patch)
tree75acbdb186cf4f964b71837d00e055a1caeec300 /doc
parent62699a318754c6811622d31cfab195b4dbc3775e (diff)
parent28c87fed19bc1609716d532819a7f25b0b9494d3 (diff)
downloadpython-coveragepy-git-7ae3630eac78ca4ba3ccbf84d4b1bef61fcaa8c5.tar.gz
Merged in jdufresne/coverage.py (pull request #135)
Update all Read the Docs links to use https
Diffstat (limited to 'doc')
-rw-r--r--doc/cmd.rst2
-rw-r--r--doc/config.rst2
-rw-r--r--doc/faq.rst6
-rw-r--r--doc/index.rst2
4 files changed, 6 insertions, 6 deletions
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: