-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When cloning the repo, users expect to (or should expect to) be able to run `go test ./...` and run all the tests. If running all the tests on a fresh clone of main doesn't work, then it's hard to contribute. This ensures that all of the tests run with `go test ./... -short`. The short flag is used because there are some tests that are "costly" in terms of time or environment. This is a well-known flag in Go for bypassing these tests to provide a good onramp for new contributors. Also, where one test was failing documentation has been improved and failing tests were fixed.
- Loading branch information
1 parent
ed7d9d7
commit ee0b35f
Showing
3 changed files
with
79 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters