2023-04-14 18:13:12 +01:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package art
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"tailscale.com/util/cibuild"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
if cibuild.On() {
|
|
|
|
// Skip CI on GitHub for now
|
|
|
|
// TODO: https://github.com/tailscale/tailscale/issues/7866
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2023-07-13 20:09:40 +01:00
|
|
|
os.Exit(m.Run())
|
2023-04-14 18:13:12 +01:00
|
|
|
}
|