diff --git a/tests/unit/simple_test.go b/tests/integration/simple_test.go similarity index 99% rename from tests/unit/simple_test.go rename to tests/integration/simple_test.go index df8419c..ed17274 100644 --- a/tests/unit/simple_test.go +++ b/tests/integration/simple_test.go @@ -1,4 +1,4 @@ -package unit +package tests import ( "context" diff --git a/tests/unit/deployments/traefik_compose_test.go b/tests/integration/traefik_compose_test.go similarity index 98% rename from tests/unit/deployments/traefik_compose_test.go rename to tests/integration/traefik_compose_test.go index e526489..a8fb7be 100644 --- a/tests/unit/deployments/traefik_compose_test.go +++ b/tests/integration/traefik_compose_test.go @@ -1,4 +1,4 @@ -package deployments +package tests import ( "os" @@ -18,7 +18,7 @@ func repoRoot(t *testing.T) string { t.Fatalf("failed to resolve caller path") } - return filepath.Clean(filepath.Join(filepath.Dir(filename), "..", "..", "..")) + return filepath.Clean(filepath.Join(filepath.Dir(filename), "..", "..")) } func asMap(t *testing.T, v any) map[string]any { diff --git a/tests/unit/worker_trust_test.go b/tests/integration/worker_trust_test.go similarity index 99% rename from tests/unit/worker_trust_test.go rename to tests/integration/worker_trust_test.go index fee843b..c492c7a 100644 --- a/tests/unit/worker_trust_test.go +++ b/tests/integration/worker_trust_test.go @@ -1,4 +1,4 @@ -package unit +package tests import ( "os"