Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mszadkow committed Jan 3, 2025
1 parent cb38fd9 commit 8017e70
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile-test.mk
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ test: gotestsum ## Run tests.

.PHONY: test-integration
test-integration: gomod-download envtest ginkgo dep-crds kueuectl ginkgo-top ## Run tests.
ls -al "$(PROJECT_DIR)/dep-crds/ray-operator"
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" \
KUEUE_BIN=$(PROJECT_DIR)/bin \
ENVTEST_K8S_VERSION=$(ENVTEST_K8S_VERSION) \
Expand Down
9 changes: 7 additions & 2 deletions test/integration/controller/jobs/rayjob/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,13 @@ func TestAPIs(t *testing.T) {

var _ = ginkgo.BeforeSuite(func() {
fwk = &framework.Framework{
CRDPath: crdPath,
DepCRDPaths: []string{rayCrdPath},
CRDPath: crdPath,
DepCRDPaths: []string{
rayCrdPath,
filepath.Join("..", "..", "..", "..", "..", "dep-crds", "jobset-operator"),
filepath.Join("..", "..", "..", "..", "..", "dep-crds", "training-operator-crds"),
filepath.Join("..", "..", "..", "..", "..", "dep-crds", "mpi-operator"),
},
}

cfg = fwk.Init()
Expand Down

0 comments on commit 8017e70

Please sign in to comment.