Skip to content

Commit 1c11e0e

Browse files
committed
docs: replace http:// -> https:// and fix some broken links
1 parent 3a6128b commit 1c11e0e

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ bugs.
656656
The tests for pytest-django itself has been greatly improved, paving the
657657
way for easier additions of new and exciting features in the future!
658658

659-
* Semantic version numbers will now be used for releases, see http://semver.org/.
659+
* Semantic version numbers will now be used for releases, see https://semver.org/.
660660

661661
* Do not allow database access in tests by default. Introduce
662662
``pytest.mark.django_db`` to enable database access.
@@ -720,7 +720,7 @@ v1.1
720720
----
721721

722722
* The initial release of this fork from `Ben Firshman original project
723-
<http://github.com/bfirsh/pytest_django>`__
723+
<https://github.com/bfirsh/pytest_django>`__
724724
* Added documentation
725725
* Uploaded to PyPI for easy installation
726726
* Added the ``transaction_test_case`` decorator for tests that needs real transactions

docs/contributing.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -227,16 +227,16 @@ double cookie points. Seriously. You rock.
227227

228228
.. _fork: https://github.com/pytest-dev/pytest-django
229229
.. _issue tracker: https://github.com/pytest-dev/pytest-django/issues
230-
.. _Sphinx: http://sphinx.pocoo.org/
231-
.. _PEP8: http://www.python.org/dev/peps/pep-0008/
232-
.. _GitHub : http://www.github.com
233-
.. _GitHub help : http://help.github.com
234-
.. _freenode : http://freenode.net/
230+
.. _Sphinx: https://www.sphinx-doc.org/
231+
.. _PEP8: https://www.python.org/dev/peps/pep-0008/
232+
.. _GitHub : https://www.github.com
233+
.. _GitHub help : https://help.github.com
234+
.. _freenode : https://freenode.net/
235235
.. _@andreaspelme : https://twitter.com/andreaspelme
236-
.. _pull request : http://help.github.com/send-pull-requests/
237-
.. _git : http://git-scm.com/
238-
.. _restructuredText: http://docutils.sourceforge.net/docs/ref/rst/introduction.html
236+
.. _pull request : https://help.github.com/send-pull-requests/
237+
.. _git : https://git-scm.com/
238+
.. _restructuredText: https://docutils.sourceforge.io/docs/ref/rst/introduction.html
239239
.. _django CMS: https://www.django-cms.org/
240240
.. _GitHub Actions: https://github.com/features/actions
241241
.. _pytest-django Actions: https://github.com/pytest-dev/pytest-django/actions
242-
.. _`subprocess section of coverage documentation`: http://nedbatchelder.com/code/coverage/subprocess.html
242+
.. _`subprocess section of coverage documentation`: https://coverage.readthedocs.io/en/latest/subprocess.html

docs/database.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ directly in ``pytest-django`` please get in touch, we are interested
7979
in eventually supporting this but unsure about simply following
8080
Django's approach.
8181

82-
See `https://github.com/pytest-dev/pytest-django/pull/431` for an idea /
83-
discussion to approach this.
82+
See `pull request 431 <https://github.com/pytest-dev/pytest-django/pull/431>`_
83+
for an idea/discussion to approach this.
8484

8585
``--reuse-db`` - reuse the testing database between test runs
8686
--------------------------------------------------------------

docs/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ When debugging test collection problems, the ``--collectonly`` flag and
5454
``-rs`` (report skipped tests) can be helpful.
5555

5656
.. _related pytest docs:
57-
http://docs.pytest.org/en/stable/example/pythoncollection.html#changing-naming-conventions
57+
https://docs.pytest.org/en/stable/example/pythoncollection.html#changing-naming-conventions
5858

5959
Does pytest-django work with the pytest-xdist plugin?
6060
-----------------------------------------------------
@@ -144,6 +144,6 @@ pytest-django.
144144

145145
Direct help can be found in the #pylib IRC channel on irc.freenode.org.
146146

147-
.. _pytest tag: http://stackoverflow.com/search?q=pytest
147+
.. _pytest tag: https://stackoverflow.com/search?q=pytest
148148
.. _open an issue on the GitHub project:
149149
https://github.com/pytest-dev/pytest-django/issues/

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ Running the test suite with pytest offers some features that are not present in
4646

4747
See the `pytest documentation`_ for more information on pytest.
4848

49-
.. _pytest documentation: http://docs.pytest.org/
49+
.. _pytest documentation: https://docs.pytest.org/
5050

5151
Bugs? Feature Suggestions?
5252
==========================
5353

5454
Report issues and feature requests at the `GitHub issue tracker`_.
5555

56-
.. _GitHub issue tracker: http://github.com/pytest-dev/pytest-django/issues
56+
.. _GitHub issue tracker: https://github.com/pytest-dev/pytest-django/issues
5757

5858
Table of Contents
5959
=================

docs/tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Talks, articles and blog posts
1313

1414
* Talk from DjangoCon Europe 2014: `pytest: helps you write better Django apps, by Andreas Pelme <https://www.youtube.com/watch?v=aaArYVh6XSM>`_
1515

16-
* Talk from EuroPython 2013: `Testing Django application with pytest, by Andreas Pelme <http://www.youtube.com/watch?v=aUf8Fkb7TaY>`_
16+
* Talk from EuroPython 2013: `Testing Django application with pytest, by Andreas Pelme <https://www.youtube.com/watch?v=aUf8Fkb7TaY>`_
1717

18-
* Three part blog post tutorial (part 3 mentions Django integration): `pytest: no-boilerplate testing, by Daniel Greenfeld <http://pydanny.com/pytest-no-boilerplate-testing.html>`_
18+
* Three part blog post tutorial (part 3 mentions Django integration): `pytest: no-boilerplate testing, by Daniel Greenfeld <https://daniel.feldroy.com/pytest-no-boilerplate-testing.html>`_
1919

2020
* Blog post: `Django Projects to Django Apps: Converting the Unit Tests, by
2121
John Costa
@@ -28,7 +28,7 @@ Step 1: Installation
2828
--------------------
2929

3030
pytest-django can be obtained directly from `PyPI
31-
<http://pypi.python.org/pypi/pytest-django>`_, and can be installed with
31+
<https://pypi.python.org/pypi/pytest-django>`_, and can be installed with
3232
``pip``:
3333

3434
.. code-block:: bash

0 commit comments

Comments
 (0)