File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
types/bech32/legacybech32 Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,14 @@ gen-proto-go:
1313 fi
1414 echo " ✅ SUCCESS: just gen-proto-go"
1515
16+ # Run cosmos-sdk tests relevant to Nibiru
1617test :
1718 #!/usr/bin/env bash
19+ printf " \n\n Run tests - cosmos-sdk/types:\n "
20+ go test ./ types/ ... -tags=' ledger test_ledger_mock'
21+
22+ printf " \n\n Run tests - cosmos-sdk/x:\n "
1823 go test ./ x/ ...
24+
25+ printf " \n\n Run tests - cosmos-sdk/baseapp:\n "
1926 go test ./ baseapp/ ...
20- # FIXME: Fails due to ledger error. This was not fixed in t# cosmos-sdk.
21- # We'll need to do it here in order to run the tests for the entire repo.
22- # go test ./types/...
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ import (
1111 sdk "github.com/cosmos/cosmos-sdk/types"
1212)
1313
14+ // NOTE: This test requires the build tags for ledger devices.
15+ // In other words, you'd run something like
16+ // ```
17+ // go test ./types/... -tags='ledger test_ledger_mock'
18+ // ```
1419func TestBeach32ifPbKey (t * testing.T ) {
1520 require := require .New (t )
1621 path := * hd .NewFundraiserParams (0 , sdk .CoinType , 0 )
You can’t perform that action at this time.
0 commit comments