From 4048a26468f72053939d5245c81a0bd561a38967 Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Fri, 30 Jun 2023 17:16:07 +0200 Subject: [PATCH] test: Update e2e tests local run documentation --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 31f21640..31ce40f0 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ CodeFlare Stack Compatibility Matrix The e2e tests can be executed locally by running the following commands: -1. Setup the test cluster: +1. Use an existing cluster, or set up a test cluster, e.g.: ```bash # Create a KinD cluster @@ -30,13 +30,20 @@ The e2e tests can be executed locally by running the following commands: $ make install ``` -2. Start the operator locally: +2. Set up the CodeFlare stack: + ```bash + $ make setup-e2e + ``` + +3. Start the operator locally: ```bash $ make run ``` -3. In a separate terminal, run the e2e suite: + Alternatively, You can run the operator from your IDE / debugger. + +4. In a separate terminal, run the e2e suite: ```bash $ make test-e2e