Skip to content

Commit

Permalink
doc : update make e2e command to clearly specify how to provide e2e t…
Browse files Browse the repository at this point in the history
…est args

`make e2e` command doesn't clearly specify on how to pass the provided arguments to testsuite.
I was able to get it working with a combination of commandline arguments and test environment
variables.

Signed-off-by: Rohan Kumar <[email protected]>
  • Loading branch information
rohanKanojia authored and gbraad committed Jan 17, 2025
1 parent fdf6cd5 commit 59b8279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/Testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $ make e2e
Implicitly, all e2e tests for your operating system are executed. If you want to run only tests from one feature file, you have to override `GODOG_OPTS` environment variable. For example:

```bash
make e2e GODOG_OPTS="--godog.tags='@basic && @windows'" BUNDLE_LOCATION=<bundle location> PULL_SECRET_FILE=<pull secret path>
make e2e GODOG_OPTS="--godog.tags='@basic && @windows'" BUNDLE_LOCATION="--bundle-location=<bundle location>" PULL_SECRET_FILE="--pull-secret-file=<pull secret path>"
```

Please notice `@basic && @windows`, where `@basic` tag stands for `basic.feature` file and `@windows` tag for e2e tests designed for Windows.
Expand Down

0 comments on commit 59b8279

Please sign in to comment.