Skip to content

Testing Instructions

In order to run the tests you'll need to make sure that you have the just command runner installed.

See the Install page for details, or the Opinionated Install instructions if you want to use the just command runner.

Running the full test suite

To run all of the Django Packages tests:

docker-compose run django pytest

Alternatively, you can use just:

just test

Selectively running tests

To run tests for a particular Django Packages app, for example the feeds app:

docker-compose run django pytest feeds

Alternatively, you can use just:

just test feeds