celestia-app
celestia-app copied to clipboard
Investigate the tests race conditions
Description
Currently, when running the race tests, we're also adding the -short
flag. This means that multiple tests get skipped and not checked for races:
https://github.com/celestiaorg/celestia-app/blob/6163e271b5128f554a6c19b6eddf415109224833/Makefile#L113
To see the races happening, run the following:
$ go test -mod=readonly -race ./...
Acceptance Criteria
- [ ] Investigate the issue