Use short test to signal that we dont run integration

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2022-10-18 14:45:18 +02:00
parent c6f82c3646
commit dfadb965b7
No known key found for this signature in database
5 changed files with 17 additions and 1 deletions

View file

@ -27,6 +27,10 @@ type IntegrationCLITestSuite struct {
}
func TestIntegrationCLITestSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration tests due to short flag")
}
s := new(IntegrationCLITestSuite)
suite.Run(t, s)