From b3249fada776bc1787ced47d35d47211a82bbeca Mon Sep 17 00:00:00 2001 From: Jack Pearson Date: Mon, 20 Mar 2023 22:14:10 -0700 Subject: [PATCH] docs: move `make build` instruction from paragraph into list (#3193) * docs: move `make build` instruction from paragraph into list * Update docs/content/contributing/tests.md --------- Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com> --- docs/content/contributing/tests.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/content/contributing/tests.md b/docs/content/contributing/tests.md index 7e24e8f0..ba63bf74 100644 --- a/docs/content/contributing/tests.md +++ b/docs/content/contributing/tests.md @@ -56,12 +56,13 @@ To run the test suite, you will need to: ### Executing Test(s) -We use `make` to run commands. You will first need to build the container image via `make build`. You can then: +We use `make` to run commands. -1. Run all tests: `make clean tests` -2. Run a single test: `make clean generate-accounts test/` -3. Run multiple unrelated tests: `make clean generate-accounts test/,` (just add a `,` and then immediately write the new test name) -4. Run a whole set or all serial tests: `make clean generate-accounts tests/parallel/setX` where `X` is the number of the set or `make clean generate-accounts tests/serial` +1. Run `make build` to create or update the local `mailserver-testing:ci` Docker image (_using the projects `Dockerfile`_) +2. Run all tests: `make clean tests` +3. Run a single test: `make clean generate-accounts test/` +4. Run multiple unrelated tests: `make clean generate-accounts test/,` (just add a `,` and then immediately write the new test name) +5. Run a whole set or all serial tests: `make clean generate-accounts tests/parallel/setX` where `X` is the number of the set or `make clean generate-accounts tests/serial` ??? tip "Setting the Degree of Parallelization for Tests"