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
commit57414b8854da772d81008576f70a63e2dec220d5 (patch)
tree16a163fefd42bacd1bdac6769cd91de9e940d3c1 /doc
parentdb260dc3feb931947309e88fa93063a0a37b6eda (diff)
parent851078aed7f032c99d9dfe9e107c1b52501c4509 (diff)
downloadpython-coveragepy-57414b8854da772d81008576f70a63e2dec220d5.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 8dbe56e..ef4c113 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 75803bd..e627549 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 ef7e872..f6085b6 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 b3987ac..62b748f 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: