Exclude some tests cases in CI

This commit is contained in:
Daniel
2022-02-02 13:34:42 +01:00
parent 60d8664e7b
commit ef62be4cb0
2 changed files with 42 additions and 30 deletions

View File

@@ -6,6 +6,10 @@ import (
)
func TestLocationLookup(t *testing.T) {
// Skip in CI.
if testing.Short() {
t.Skip()
}
t.Parallel()
ip1 := net.ParseIP("81.2.69.142")