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

Update README.md #10

Merged
merged 2 commits into from
Jun 25, 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
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Vitess tester tests Vitess using the same test files as the [MySQL Test Framewor
## Install

```
go install github.com/vitessio/vitess-tester/src/vitess-tester@latest
go install github.com/vitessio/vitess-tester@latest
```

## Testing methodology
Expand Down Expand Up @@ -85,12 +85,13 @@ Usage of ./vitess-tester:
Get output in an xml file instead of errors directory
```

By default, it connects to the MySQL server at 127.0.0.1 with root and no password, and to the vtgate server at 127.0.0.1 with root and no password:
It will bring up an entire Vitess cluster on 127.0.0.1, unsharded or sharded depending on the `-sharded` flag. MySQL and VTGate both start with root and no password configured.

```sh
./vitess-tester # run all the tests
./vitess-tester example # run a specified test
./vitess-tester example1 example2 example3 # seperate different tests with one or more spaces
./vitess-tester t/example.test # run a specified test
./vitess-tester t/example1.test t/example2.test t/example3.test # separate different tests with one or more spaces
./vitess-tester t/*.test # wildcards can be used
./vitess-tester https://raw.githubusercontent.com/vitessio/vitess-tester/main/t/basic.test # can also be run against an URL
```

## Contributing
Expand Down
Loading