File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,13 @@ jobs:
116116 env :
117117 GOARCH : 386
118118
119- - name : Run test in 386
120- run : go test -covermode=atomic `go list ./... | grep -vE "vendor|mocks|snowman"`
121- env :
122- GOARCH : 386
119+ test-gg18-integration :
120+ name : Run test cases for gg18
121+ runs-on : ubuntu-22.04
122+ steps :
123+ - uses : actions/checkout@v3
124+ - uses : actions/setup-go@v3
125+ with :
126+ go-version-file : ' go.mod'
127+ - name : Run test cases for gg18
128+ run : go test -race -v -run ^TestGG18_4Node$ ./system/crypto/tss/gg18
Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ const (
3232
3333func TestGG18_4Node (t * testing.T ) {
3434
35+ if testing .Short () {
36+ t .Skip ("skip gg18 integration test in short mode" )
37+ }
3538 channel := testChannel
3639 ports := make ([]int , 4 )
3740 for i := range ports {
You can’t perform that action at this time.
0 commit comments