summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorÜlgen Sarıkavak <ulgensrkvk@gmail.com>2025-07-22 05:10:16 +0300
committerSaptak Sengupta <saptak013@gmail.com>2025-08-20 12:12:43 +0530
commit33cbad9d052d2637e6d3407dba612cedc466dc77 (patch)
treea8f33fe8cf096e95ca5a96d3eb1557082eea60bf /README.rst
parent5e0ec824957d1970510e90c74f3bb52bac150b8e (diff)
Remove tox
Resolves #1817 Resolves #1890
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst8
1 files changed, 2 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index ba77c427..f547d6e5 100644
--- a/README.rst
+++ b/README.rst
@@ -130,16 +130,13 @@ Our test results can be found here:
* https://github.com/django/djangoproject.com/actions
-For local development don't hesitate to install
-`tox <https://tox.readthedocs.io/>`_ to run the website's test suite.
-
Then in the root directory (next to the ``manage.py`` file) run::
- tox
+ make test
Behind the scenes, this will run the usual ``python -m manage test`` management
command with a preset list of apps that we want to test. We
-collect test coverage data as part of that tox run, to show the result
+collect test coverage data as part of that test run, to show the result
simply run::
python -m coverage report
@@ -364,7 +361,6 @@ Running Locally with Docker
4. Run the tests::
- docker compose run --rm web tox
docker compose run --rm web python -m manage test
Pre-commit checks