Skip to content

Commit 3b42c4a

Browse files
wearypossum4770bluetech
authored andcommitted
docs(readme): update readme broken-links.
- [x] remove broken link line 58 - Manage test dependencies with pytest fixtures. ~~<https://pytest.org/en/latest/fixture.html\>\~\~_ - Manage test dependencies with pytest fixtures. <https://pytest.org/en/latest/how-to/fixtures.html\>_ - [x] remove broken line line 62 - Make use of other pytest plugins <https://pytest.org/en/latest/how-to/plugins.html\>. - [x] run test | Test | Result | | ----------- | :-----------: | | tests/test_asserts.py |[0%] | | tests/test_database.py | [5%] | | tests/test_environment.py | [10%] | | tests/test_fixtures.py | [17%] | | tests/test_unittest.py | [21%] | | tests/test_database.py | [24%] | | tests/test_fixtures.py | [26%] | | tests/test_asserts.py | [26%] | | tests/test_database.py |[ 39%] | | tests/test_db_access_in_repr.py | [40%] | | tests/test_db_setup.py | [47%] | | tests/test_django_configurations.py | [49%] | | tests/test_django_settings_module.py | [59%] | | tests/test_doctest.txt | [59%] | | tests/test_environment.py | [65%] | | tests/test_fixtures.py | [83%] | | tests/test_initialization.py | [83%] | | tests/test_manage_py_scan.py | [88%] | | tests/test_unittest.py | [94%] | | tests/test_urls.py | [96%] | | tests/test_without_django_loaded.py | [100%] | Fixes pytest-dev/pytest-django #914
1 parent a179547 commit 3b42c4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ Why would I use this instead of Django's `manage.py test` command?
5555
Running your test suite with pytest-django allows you to tap into the features
5656
that 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

6565
See the `pytest documentation <https://pytest.org/en/latest/>`_ for more information on pytest itself.

0 commit comments

Comments
 (0)