satellite/geoip: skip test on macOS
This is how we deal with the other tests that expect all 127.* addresses to work locally. Change-Id: Id62bb07a56044dfadcc87089f0f13684eeb07f3c
This commit is contained in:
parent
fd6ce6b9a5
commit
b98a09fa58
@ -5,6 +5,7 @@ package geoip_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
@ -19,6 +20,9 @@ import (
|
||||
)
|
||||
|
||||
func TestGeoIPMock(t *testing.T) {
|
||||
if runtime.GOOS == "darwin" {
|
||||
t.Skip("Test does not work with macOS")
|
||||
}
|
||||
testplanet.Run(t,
|
||||
testplanet.Config{
|
||||
SatelliteCount: 1, StorageNodeCount: 3, UplinkCount: 0,
|
||||
|
Loading…
Reference in New Issue
Block a user