Skip to content

Commit

Permalink
Adjust SDK version, fix TestMNISTRayClusterSDK
Browse files Browse the repository at this point in the history
  • Loading branch information
sutaakar committed Aug 9, 2023
1 parent d987823 commit d556845
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ KUBERAY_VERSION ?= v0.5.0
RAY_VERSION ?= 2.5.0

# CODEFLARE_SDK_VERSION defines the default version of the CodeFlare SDK
CODEFLARE_SDK_VERSION ?= 0.4.4
CODEFLARE_SDK_VERSION ?= 0.6.1

# OPERATORS_REPO_ORG points to GitHub repository organization where bundle PR is opened against
# OPERATORS_REPO_FORK_ORG points to GitHub repository fork organization where bundle build is pushed to
Expand Down
5 changes: 2 additions & 3 deletions test/e2e/mnist_raycluster_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
cluster = Cluster(ClusterConfiguration(
name='mnist',
namespace=namespace,
min_worker=1,
max_worker=1,
num_workers=1,
min_cpus='500m',
max_cpus=1,
min_memory=0.5,
max_memory=1,
gpu=0,
num_gpus=0,
instascale=False,
))

Expand Down
3 changes: 3 additions & 0 deletions test/e2e/mnist_raycluster_sdk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ func TestMNISTRayClusterSDK(t *testing.T) {
test.T().Skip("Requires https://github.com/project-codeflare/codeflare-sdk/pull/146")
}

// Currently blocked by https://github.com/project-codeflare/codeflare-sdk/pull/271 , remove the skip once SDK with the PR is released
test.T().Skip("Requires https://github.com/project-codeflare/codeflare-sdk/pull/271")

// Create a namespace
namespace := test.NewTestNamespace()

Expand Down
2 changes: 1 addition & 1 deletion test/support/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package support
// ***********************

const (
CodeFlareSDKVersion = "0.4.4"
CodeFlareSDKVersion = "0.6.1"
RayVersion = "2.5.0"
RayImage = "rayproject/ray:2.5.0"
)

0 comments on commit d556845

Please sign in to comment.