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

fix(systemtests): correct the binary version #23106

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions systemtests/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Or via manual steps
```shell
make build
mkdir -p ./tests/systemtests/binaries
cp ./build/simd ./tests/systemtests/binaries/
cp ./build/simdv2 ./tests/systemtests/binaries/
```

## Part 1: Writing the first system test
Expand Down Expand Up @@ -56,7 +56,7 @@ Then print the result to for the next steps
### Run the test

```shell
go test -mod=readonly -tags='system_test' -v ./... --run TestQueryTotalSupply --verbose
go test -mod=readonly -tags='system_test' -v ./... --run TestQueryTotalSupply
```

This give very verbose output. You would see all simd CLI commands used for starting the server or by the client to interact.
Expand Down
4 changes: 2 additions & 2 deletions tests/systemtests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ Or via manual steps
```shell
make build
mkdir -p ./tests/systemtests/binaries
cp ./build/simd ./tests/systemtests/binaries/
cp ./build/simdv2 ./tests/systemtests/binaries/
```

### Manual test run

```shell
go test -v -mod=readonly -failfast -tags='system_test' --run TestStakeUnstake ./... --verbose
go test -v -mod=readonly -failfast -tags='system_test' --run TestStakeUnstake ./...
```

### Working with macOS
Expand Down
Loading