Just took a sample set of the following tests peer.TestCreateChannel, genesisconfig.TestLoadProfile.func1. Tried to reproduce as shown below, it seems to be completing in milliseconds as opposed ~5seconds below. I tried doing "make unit-test" and "make integration-test" but unable to get the issue.
Possibly am missing something in my repro steps, any pointers on steps to repro would be helpful.
Nicholas.
nb@~/Documents/github.com/nbasker/fabric$ go test -v github.com/hyperledger/fabric/core/peer | grep TestCreateChannel
=== RUN TestCreateChannel
--- PASS: TestCreateChannel (0.29s)
nb@~/Documents/github.com/nbasker/fabric$ go test -v -count=1 github.com/hyperledger/fabric/internal/configtxgen/genesisconfig | grep TestLoadProfile
=== RUN TestLoadProfile
=== RUN TestLoadProfile/SampleDevModeKafka
=== RUN TestLoadProfile/SampleDevModeSolo
=== RUN TestLoadProfile/SampleSingleMSPChannel
=== RUN TestLoadProfile/SampleSingleMSPKafka
=== RUN TestLoadProfile/SampleSingleMSPSolo
--- PASS: TestLoadProfile (0.35s)
--- PASS: TestLoadProfile/SampleDevModeKafka (0.33s)
--- PASS: TestLoadProfile/SampleDevModeSolo (0.00s)
--- PASS: TestLoadProfile/SampleSingleMSPChannel (0.00s)
--- PASS: TestLoadProfile/SampleSingleMSPKafka (0.00s)
--- PASS: TestLoadProfile/SampleSingleMSPSolo (0.00s)
=== RUN TestLoadProfileWithPath
=== RUN TestLoadProfileWithPath/SampleDevModeKafka
=== RUN TestLoadProfileWithPath/SampleDevModeSolo
=== RUN TestLoadProfileWithPath/SampleSingleMSPChannel
=== RUN TestLoadProfileWithPath/SampleSingleMSPKafka
=== RUN TestLoadProfileWithPath/SampleSingleMSPSolo
--- PASS: TestLoadProfileWithPath (0.02s)
--- PASS: TestLoadProfileWithPath/SampleDevModeKafka (0.00s)
--- PASS: TestLoadProfileWithPath/SampleDevModeSolo (0.00s)
--- PASS: TestLoadProfileWithPath/SampleSingleMSPChannel (0.00s)
--- PASS: TestLoadProfileWithPath/SampleSingleMSPKafka (0.00s)
--- PASS: TestLoadProfileWithPath/SampleSingleMSPSolo (0.00s)