Skip to content

Commit 16ad5d5

Browse files
committed
disable connection tests
refs #338
1 parent daa2c45 commit 16ad5d5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cmd/akash/connection_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,46 @@ import (
99
)
1010

1111
func TestProviderCreate_NoNode(t *testing.T) {
12+
testutil.Shrug(t, 338)
1213
doTest_NoNode(t, providerCommand(),
1314
createProviderCommand().Name(), "provider.yml", "-k", "keyname")
1415
}
1516

1617
func TestProviderRun_NoNode(t *testing.T) {
18+
testutil.Shrug(t, 338)
1719
hexaddr := testutil.HexAddress(t)
1820
doTest_NoNode(t, providerCommand(),
1921
runCommand().Name(), hexaddr, "-k", "keyname")
2022
}
2123

2224
func TestCreateDeployment_NoNode(t *testing.T) {
25+
testutil.Shrug(t, 338)
2326
path := "deployment.yaml"
2427
doTest_NoNode(t, deploymentCommand(),
2528
createDeploymentCommand().Name(), path, "-k", "keyname")
2629
}
2730

2831
func TestCloseDeployment_NoNode(t *testing.T) {
32+
testutil.Shrug(t, 338)
2933
deployment := testutil.HexDeploymentAddress(t)
3034
doTest_NoNode(t, deploymentCommand(),
3135
closeDeploymentCommand().Name(), deployment, "-k", "keyname")
3236
}
3337

3438
func TestMarketplace_NoNode(t *testing.T) {
39+
testutil.Shrug(t, 338)
3540
doTest_NoNode(t, marketplaceCommand())
3641
}
3742

3843
func TestSend_NoNode(t *testing.T) {
44+
testutil.Shrug(t, 338)
3945
to := testutil.HexAddress(t)
4046
doTest_NoNode(t, sendCommand(),
4147
"1", to, "-k", "keyname")
4248
}
4349

4450
func TestStatus_NoNode(t *testing.T) {
51+
testutil.Shrug(t, 338)
4552
doTest_NoNode(t, statusCommand())
4653
}
4754

0 commit comments

Comments
 (0)