Skip to content

Commit

Permalink
documentation: minor readme fixes (#4791)
Browse files Browse the repository at this point in the history
  • Loading branch information
r2k1 authored Aug 7, 2024
1 parent 0bcbe23 commit 19a4f36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To run a specific test, use the test name:
```bash
TAGS_TO_RUN="name=Test_azurelinuxv2" ./e2e-local.sh
# or
go test -run Test_azurelinuxv2 -v -timeout 20m
go test -run Test_azurelinuxv2 -v -timeout 90m
```


Expand Down Expand Up @@ -96,20 +96,20 @@ Azure resources are deleted periodically by an external garbage collector. Local

### Global Settings

Set `GOFLAGS="-timeout=30m -parallel=100"` in your shell configuration file.
Set `GOFLAGS="-timeout=90m -parallel=100"` in your shell configuration file.

### GoLand

In **Run > Edit Configurations...**, set `-timeout=60m -parallel=100` in the Go tool arguments field.
In **Run > Edit Configurations...**, set `-timeout=90m -parallel=100` in the Go tool arguments field.

### VSCode

Add to `settings.json`:

```json
{
"go.testFlags": ["-parallel=100"],
"go.testTimeout": "30m"
"go.testFlags": ["-parallel=100", "-v"],
"go.testTimeout": "90m"
}
```

Expand Down

0 comments on commit 19a4f36

Please sign in to comment.