From d28090d99a6626c076e74ba1b528c244b76563f9 Mon Sep 17 00:00:00 2001 From: Gilbertsoft <25326036+gilbertsoft@users.noreply.github.com> Date: Sun, 23 Jul 2023 13:37:22 +0200 Subject: [PATCH] [DOCS] Add description to run tests locally (#110) --- Documentation/Maintenance.rst | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Documentation/Maintenance.rst b/Documentation/Maintenance.rst index e99316d..d2f07cc 100644 --- a/Documentation/Maintenance.rst +++ b/Documentation/Maintenance.rst @@ -46,13 +46,27 @@ Reset the project .. warning:: - This permanently removes all local changes and cannot be undone. + This permanently removes all local changes in the database and cannot be + undone. To reset the project to a clean state run `ddev reset` which will remove the database and the previously installed TYPO3 instance. All other files in the repository will stay untouched. +Test the project +~~~~~~~~~~~~~~~~ + +.. warning:: + + This permanently removes all local changes in the database and cannot be + undone. + +To start the tests locally run `ddev run-tests` which will remove the database +and the previously installed TYPO3 instance and sets up a fresh instance. For +more information about the available options run `ddev run-tests --help`. + + Render the documentation ~~~~~~~~~~~~~~~~~~~~~~~~