github.com/hyperledger/fabric-ca@v2.0.0-alpha.0.20201120210307-7b4f34729db1+incompatible/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  PKGS=`go list github.com/hyperledger/fabric-ca/test/integration/...`
    14  
    15  go test $PKGS
    16  
    17  exit $?