mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
45b5d0983c
Updates #7866 Signed-off-by: David Anderson <danderson@tailscale.com>
21 lines
334 B
Go
21 lines
334 B
Go
// 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)
|
|
}
|
|
os.Exit(m.Run())
|
|
}
|