summaryrefslogtreecommitdiff
path: root/doc/faq.rst
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-01-06 10:04:12 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2018-01-06 10:04:12 -0800
commit28c87fed19bc1609716d532819a7f25b0b9494d3 (patch)
treebc1080e0bf78ea3d6ec41cade90f3b29066f4a82 /doc/faq.rst
parent62a47468147c97379ea106b3f9c994445b4a08a4 (diff)
downloadpython-coveragepy-git-28c87fed19bc1609716d532819a7f25b0b9494d3.tar.gz
Update all Read the Docs links to use https
Diffstat (limited to 'doc/faq.rst')
-rw-r--r--doc/faq.rst6
1 files changed, 3 insertions, 3 deletions
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?**