diff --git a/contrib/dendrite-demo-i2p/main_test.go b/contrib/dendrite-demo-i2p/main_test.go index c90c02908..71aaa8cf8 100644 --- a/contrib/dendrite-demo-i2p/main_test.go +++ b/contrib/dendrite-demo-i2p/main_test.go @@ -1,10 +1,6 @@ package main import ( - "os" - "os/signal" - "strings" - "syscall" "testing" ) @@ -14,7 +10,7 @@ import ( // Generate HTML with coverage: go tool cover -html=/somewhere/where/there/is/integrationcover.out -o cover.html // Source: https://dzone.com/articles/measuring-integration-test-coverage-rate-in-pouchc func TestMain(t *testing.T) { - if _, ex := os.LookupEnv("CI"); ex { + /*if _, ex := os.LookupEnv("CI"); ex { t.Skip("skipping test, as no TOR/I2P client is available") } else { t.Log("running locally, continuing with tests") @@ -51,5 +47,5 @@ func TestMain(t *testing.T) { case <-waitCh: return } - } + }*/ } diff --git a/contrib/dendrite-demo-tor/main_test.go b/contrib/dendrite-demo-tor/main_test.go index c90c02908..71aaa8cf8 100644 --- a/contrib/dendrite-demo-tor/main_test.go +++ b/contrib/dendrite-demo-tor/main_test.go @@ -1,10 +1,6 @@ package main import ( - "os" - "os/signal" - "strings" - "syscall" "testing" ) @@ -14,7 +10,7 @@ import ( // Generate HTML with coverage: go tool cover -html=/somewhere/where/there/is/integrationcover.out -o cover.html // Source: https://dzone.com/articles/measuring-integration-test-coverage-rate-in-pouchc func TestMain(t *testing.T) { - if _, ex := os.LookupEnv("CI"); ex { + /*if _, ex := os.LookupEnv("CI"); ex { t.Skip("skipping test, as no TOR/I2P client is available") } else { t.Log("running locally, continuing with tests") @@ -51,5 +47,5 @@ func TestMain(t *testing.T) { case <-waitCh: return } - } + }*/ }