Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documentation: minor readme fixes #4791

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading