-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated changelog, added hints for local testing
- Loading branch information
1 parent
1bf0498
commit cf0947f
Showing
2 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
## Unit tests | ||
* Install old golang version (do not install just 1.11 - it's not compatible with running newer modules): | ||
|
||
``` | ||
ASDF_GOLANG_OVERWRITE_ARCH=amd64 asdf install golang 1.11.13 | ||
``` | ||
|
||
* If you see error below use `CGO_ENABLED=0`. | ||
|
||
``` | ||
# crypto/x509 | ||
malformed DWARF TagVariable entry | ||
``` | ||
|
||
## Local testing with maze runner | ||
|
||
* Maze runner tests require | ||
* Specyfing `GO_VERSION` env variable to set a golang version for docker container. | ||
* Ruby 2.7. | ||
* Running docker. | ||
|
||
* Commands to run tests | ||
|
||
``` | ||
bundle install | ||
bundle exec bugsnag-maze-runner | ||
bundle exec bugsnag-maze-runner -c features/<chosen_feature> | ||
``` |