File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,11 @@ Why would I use this instead of Django's `manage.py test` command?
5555Running your test suite with pytest-django allows you to tap into the features
5656that are already present in pytest. Here are some advantages:
5757
58- * `Manage test dependencies with pytest fixtures. <https://pytest.org/en/latest/fixture .html >`_
58+ * `Manage test dependencies with pytest fixtures. <https://pytest.org/en/latest/how-to/fixtures .html >`_
5959* Less boilerplate tests: no need to import unittest, create a subclass with methods. Write tests as regular functions.
6060* Database re-use: no need to re-create the test database for every test run.
6161* Run tests in multiple processes for increased speed (with the pytest-xdist plugin).
62- * Make use of other `pytest plugins <https://pytest.org/en/latest/plugins.html >`_.
62+ * Make use of other `pytest plugins <https://pytest.org/en/latest/how-to/ plugins.html >`_.
6363* Works with both worlds: Existing unittest-style TestCase's still work without any modifications.
6464
6565See the `pytest documentation <https://pytest.org/en/latest/ >`_ for more information on pytest itself.
You can’t perform that action at this time.
0 commit comments