Skip to content

Commit

Permalink
revise name rhtap to konflux (#310)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Valdron <[email protected]>
  • Loading branch information
michael-valdron authored Mar 14, 2024
1 parent 8886f2b commit b9b72a1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ The devfile samples used in this devfile registry are stored in the `extraDevfil

- Use the Developer perspective and import the Devfile Sample using Import from Git.

2) Verifying your Sample functions with RHTAP
2) Verifying your Sample functions with Konflux

- Create an application by importing the sample from Git.

Expand Down Expand Up @@ -113,7 +113,7 @@ In case you want to add another version to a new devfile sample you can update t

- Use the Developer perspective and import the Devfile Sample using Import from Git.

2) Verifying your Sample functions with RHTAP
2) Verifying your Sample functions with Konflux

- Create an application by importing the sample from Git.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ ROOT_REPO_DIR=$(pwd)
samplesFile="$ROOT_REPO_DIR/extraDevfileEntries.yaml"

# Install golang modules
cd "$ROOT_REPO_DIR"/tests/rhtap && \
cd "$ROOT_REPO_DIR"/tests/konflux && \
go mod tidy && \
go mod vendor && \
cd "$ROOT_REPO_DIR"

ginkgo run -p \
--timeout 2h \
tests/rhtap -- -samplesFile "$samplesFile"
tests/konflux -- -samplesFile "$samplesFile"
2 changes: 1 addition & 1 deletion tests/rhtap/go.mod → tests/konflux/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/devfile/registry/tests/rhtap
module github.com/devfile/registry/tests/konflux

go 1.19

Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions tests/rhtap/rhtap_test.go → tests/konflux/konflux_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package rhtap
package konflux

import (
"flag"
Expand Down Expand Up @@ -26,14 +26,14 @@ func init() {
flag.StringVar(&namespace, "namespace", "", "Namespace where create and build stack samples")
}

func TestRhtap(t *testing.T) {
func TestKonflux(t *testing.T) {
RegisterFailHandler(Fail)

RunSpecs(t, "rhtap suite")
RunSpecs(t, "konflux suite")

}

var _ = Describe("RHTAP sample checks", Ordered, Label("nightly"), func() {
var _ = Describe("Konflux sample checks", Ordered, Label("nightly"), func() {
var fw *testHub.ControllerHub
component := &appservice.Component{}
cdq := &appservice.ComponentDetectionQuery{}
Expand Down
2 changes: 1 addition & 1 deletion tests/rhtap/types.go → tests/konflux/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package rhtap
package konflux

import (
"os"
Expand Down

0 comments on commit b9b72a1

Please sign in to comment.