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?
55
55
Running your test suite with pytest-django allows you to tap into the features
56
56
that are already present in pytest. Here are some advantages:
57
57
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 >`_
59
59
* Less boilerplate tests: no need to import unittest, create a subclass with methods. Write tests as regular functions.
60
60
* Database re-use: no need to re-create the test database for every test run.
61
61
* 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 >`_.
63
63
* Works with both worlds: Existing unittest-style TestCase's still work without any modifications.
64
64
65
65
See 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