We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a741e commit bcf48daCopy full SHA for bcf48da
1 file changed
tests/system/aiplatform/test_custom_job.py
@@ -26,7 +26,9 @@
26
from google.cloud.aiplatform.compat.types import job_state as gca_job_state
27
from tests.system.aiplatform import e2e_base
28
29
-_PREBUILT_CONTAINER_IMAGE = "gcr.io/deeplearning-platform-release/base-cpu"
+_PREBUILT_CONTAINER_IMAGE = (
30
+ "us-docker.pkg.dev/vertex-ai/training/sklearn-cpu.1-0:latest"
31
+)
32
_CUSTOM_CONTAINER_IMAGE = "python:3.8"
33
34
_DIR_NAME = os.path.dirname(os.path.abspath(__file__))
@@ -35,8 +37,6 @@
35
37
)
36
38
39
-# runtime patch the aiplatform path installed in CustomJob
-# remove the patch after aiplatform 1.24.0 is released
40
@mock.patch.object(
41
constants,
42
"AIPLATFORM_DEPENDENCY_PATH",
0 commit comments