github.com/cactusblossom/fabric-ca@v0.0.0-20200611062428-0082fc643826/scripts/run_integration_tests (about)

     1  #!/bin/bash
     2  #
     3  # Copyright IBM Corp. All Rights Reserved.
     4  #
     5  # SPDX-License-Identifier: Apache-2.0
     6  #
     7  FCA=$GOPATH/src/github.com/hyperledger/fabric-ca
     8  
     9  echo "Running integration tests ..."
    10  
    11  export PATH=$PATH:$GOPATH/bin
    12  
    13  go get github.com/axw/gocov/...
    14  go get github.com/AlekSi/gocov-xml
    15  
    16  PKGS=`go list github.com/hyperledger/fabric-ca/test/integration/...`
    17  
    18  go test $PKGS
    19  
    20  exit $?