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:
paul cannon 2023-03-01 09:46:09 -06:00 committed by Storj Robot
parent fd6ce6b9a5
commit b98a09fa58

View File

@ -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,