mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-30 02:43:05 +00:00
Use short test to signal that we dont run integration
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
c6f82c3646
commit
dfadb965b7
5 changed files with 17 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -22,7 +22,7 @@ build:
|
||||||
dev: lint test build
|
dev: lint test build
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@go test -coverprofile=coverage.out ./...
|
@go test -short -coverprofile=coverage.out ./...
|
||||||
|
|
||||||
test_integration: test_integration_cli test_integration_derp test_integration_oidc test_integration_general
|
test_integration: test_integration_cli test_integration_derp test_integration_oidc test_integration_general
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,10 @@ type IntegrationCLITestSuite struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestIntegrationCLITestSuite(t *testing.T) {
|
func TestIntegrationCLITestSuite(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping integration tests due to short flag")
|
||||||
|
}
|
||||||
|
|
||||||
s := new(IntegrationCLITestSuite)
|
s := new(IntegrationCLITestSuite)
|
||||||
|
|
||||||
suite.Run(t, s)
|
suite.Run(t, s)
|
||||||
|
|
|
@ -45,6 +45,10 @@ type IntegrationDERPTestSuite struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestIntegrationDERPTestSuite(t *testing.T) {
|
func TestIntegrationDERPTestSuite(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping integration tests due to short flag")
|
||||||
|
}
|
||||||
|
|
||||||
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
saveLogs = false
|
saveLogs = false
|
||||||
|
|
|
@ -40,6 +40,10 @@ type IntegrationTestSuite struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestIntegrationGeneralTestSuite(t *testing.T) {
|
func TestIntegrationGeneralTestSuite(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping integration tests due to short flag")
|
||||||
|
}
|
||||||
|
|
||||||
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
saveLogs = false
|
saveLogs = false
|
||||||
|
|
|
@ -44,6 +44,10 @@ type IntegrationOIDCTestSuite struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestIntegrationOIDCTestSuite(t *testing.T) {
|
func TestIntegrationOIDCTestSuite(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping integration tests due to short flag")
|
||||||
|
}
|
||||||
|
|
||||||
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
saveLogs = false
|
saveLogs = false
|
||||||
|
|
Loading…
Reference in a new issue