Fix flag message to run updater integration tests
This commit is contained in:
parent
998f718354
commit
2d0c3d9de9
|
@ -7,7 +7,7 @@ import (
|
||||||
func TestClientReachViewVersion(t *testing.T) {
|
func TestClientReachViewVersion(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
func TestClientReboutNow(t *testing.T) {
|
func TestClientReboutNow(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
func TestClientReceiverUpgradeAvailable(t *testing.T) {
|
func TestClientReceiverUpgradeAvailable(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
func TestClientTestResults(t *testing.T) {
|
func TestClientTestResults(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
func TestClientTimeSync(t *testing.T) {
|
func TestClientTimeSync(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
func TestClientSavedWiFiNetworks(t *testing.T) {
|
func TestClientSavedWiFiNetworks(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
@ -32,7 +32,7 @@ func TestClientSavedWiFiNetworks(t *testing.T) {
|
||||||
func TestClientCRUDWiFiNetwork(t *testing.T) {
|
func TestClientCRUDWiFiNetwork(t *testing.T) {
|
||||||
|
|
||||||
if !*runUpdaterIntegrationTests {
|
if !*runUpdaterIntegrationTests {
|
||||||
t.Skip("To run this test, use: go test -integration")
|
t.Skip("To run this test, use: go test -updater-integration")
|
||||||
}
|
}
|
||||||
|
|
||||||
client := NewUpdaterClient(
|
client := NewUpdaterClient(
|
||||||
|
|
Reference in New Issue