test: skip Tor enabled tests on CI for now
continuous-integration/drone/push Build is passing Details

See #6
This commit is contained in:
decentral1se 2023-10-02 11:16:41 +02:00
parent d103913bb9
commit 12bd631ae0
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 20 additions and 0 deletions

View File

@ -75,6 +75,10 @@ func TestOnOff(t *testing.T) {
}
func TestAcnOnOff(t *testing.T) {
if os.Getenv("CAIRDE_TOR_ENABLED_TEST") == "" {
t.Skip("SKIP: https://git.coopcloud.tech/decentral1se/cairde/issues/6")
}
m := newModel(currentUser.Username, currentUser.HomeDir, true)
testModel := teatest.NewTestModel(t, m)
@ -111,6 +115,10 @@ func TestAcnOnOff(t *testing.T) {
}
func TestAcnOnThenQuit(t *testing.T) {
if os.Getenv("CAIRDE_TOR_ENABLED_TEST") == "" {
t.Skip("SKIP: https://git.coopcloud.tech/decentral1se/cairde/issues/6")
}
m := newModel(currentUser.Username, currentUser.HomeDir, true)
testModel := teatest.NewTestModel(t, m)
@ -142,6 +150,10 @@ func TestAcnOnThenQuit(t *testing.T) {
}
func TestAcnOnThenOnAsksToHold(t *testing.T) {
if os.Getenv("CAIRDE_TOR_ENABLED_TEST") == "" {
t.Skip("SKIP: https://git.coopcloud.tech/decentral1se/cairde/issues/6")
}
m := newModel(currentUser.Username, currentUser.HomeDir, true)
testModel := teatest.NewTestModel(t, m)
@ -194,6 +206,10 @@ func TestAcnOnThenOnAsksToHold(t *testing.T) {
}
func TestOnThenOffAsksToWait(t *testing.T) {
if os.Getenv("CAIRDE_TOR_ENABLED_TEST") == "" {
t.Skip("SKIP: https://git.coopcloud.tech/decentral1se/cairde/issues/6")
}
m := newModel(currentUser.Username, currentUser.HomeDir, true)
testModel := teatest.NewTestModel(t, m)
@ -246,6 +262,10 @@ func TestOnThenOffAsksToWait(t *testing.T) {
}
func TestAcnOnThenQuitAsksToWait(t *testing.T) {
if os.Getenv("CAIRDE_TOR_ENABLED_TEST") == "" {
t.Skip("SKIP: https://git.coopcloud.tech/decentral1se/cairde/issues/6")
}
m := newModel(currentUser.Username, currentUser.HomeDir, true)
testModel := teatest.NewTestModel(t, m)