From 538ed6917218151df9b0610442627438d0e04790 Mon Sep 17 00:00:00 2001 From: Tomas Nevrlka Date: Mon, 19 Feb 2024 17:32:34 +0100 Subject: [PATCH] refactor: move testspecs package to pkg directory --- magefiles/magefile.go | 2 +- {magefiles => pkg}/testspecs/astginkgos.go | 0 {magefiles => pkg}/testspecs/const.go | 0 {magefiles => pkg}/testspecs/ginkgosspec.go | 0 {magefiles => pkg}/testspecs/templates.go | 0 {magefiles => pkg}/testspecs/textspec.go | 0 {magefiles => pkg}/testspecs/types.go | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename {magefiles => pkg}/testspecs/astginkgos.go (100%) rename {magefiles => pkg}/testspecs/const.go (100%) rename {magefiles => pkg}/testspecs/ginkgosspec.go (100%) rename {magefiles => pkg}/testspecs/templates.go (100%) rename {magefiles => pkg}/testspecs/textspec.go (100%) rename {magefiles => pkg}/testspecs/types.go (100%) diff --git a/magefiles/magefile.go b/magefiles/magefile.go index b49a4ea336..b4a96717b2 100644 --- a/magefiles/magefile.go +++ b/magefiles/magefile.go @@ -24,11 +24,11 @@ import ( gh "github.com/google/go-github/v44/github" "github.com/magefile/mage/sh" "github.com/redhat-appstudio/e2e-tests/magefiles/installation" - "github.com/redhat-appstudio/e2e-tests/magefiles/testspecs" "github.com/redhat-appstudio/e2e-tests/pkg/clients/github" "github.com/redhat-appstudio/e2e-tests/pkg/clients/slack" "github.com/redhat-appstudio/e2e-tests/pkg/clients/sprayproxy" "github.com/redhat-appstudio/e2e-tests/pkg/constants" + "github.com/redhat-appstudio/e2e-tests/pkg/testspecs" "github.com/redhat-appstudio/e2e-tests/pkg/utils" "github.com/redhat-appstudio/e2e-tests/pkg/utils/tekton" "github.com/redhat-appstudio/image-controller/pkg/quay" diff --git a/magefiles/testspecs/astginkgos.go b/pkg/testspecs/astginkgos.go similarity index 100% rename from magefiles/testspecs/astginkgos.go rename to pkg/testspecs/astginkgos.go diff --git a/magefiles/testspecs/const.go b/pkg/testspecs/const.go similarity index 100% rename from magefiles/testspecs/const.go rename to pkg/testspecs/const.go diff --git a/magefiles/testspecs/ginkgosspec.go b/pkg/testspecs/ginkgosspec.go similarity index 100% rename from magefiles/testspecs/ginkgosspec.go rename to pkg/testspecs/ginkgosspec.go diff --git a/magefiles/testspecs/templates.go b/pkg/testspecs/templates.go similarity index 100% rename from magefiles/testspecs/templates.go rename to pkg/testspecs/templates.go diff --git a/magefiles/testspecs/textspec.go b/pkg/testspecs/textspec.go similarity index 100% rename from magefiles/testspecs/textspec.go rename to pkg/testspecs/textspec.go diff --git a/magefiles/testspecs/types.go b/pkg/testspecs/types.go similarity index 100% rename from magefiles/testspecs/types.go rename to pkg/testspecs/types.go