Skip to content

Commit

Permalink
chore: add pandas to custom job test
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 523428852
  • Loading branch information
sararob authored and copybara-github committed Apr 11, 2023
1 parent cfb0bbd commit 8bf6477
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/system/aiplatform/test_custom_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_from_local_script_prebuilt_container(self, shared_state):
display_name=display_name,
script_path=_LOCAL_TRAINING_SCRIPT_PATH,
container_uri=_PREBUILT_CONTAINER_IMAGE,
requirements=["scikit-learn"],
requirements=["scikit-learn", "pandas"],
)
custom_job.run()

Expand All @@ -98,7 +98,7 @@ def test_from_local_script_custom_container(self, shared_state):
display_name=display_name,
script_path=_LOCAL_TRAINING_SCRIPT_PATH,
container_uri=_CUSTOM_CONTAINER_IMAGE,
requirements=["scikit-learn"],
requirements=["scikit-learn", "pandas"],
)
custom_job.run()

Expand Down Expand Up @@ -127,7 +127,7 @@ def test_from_local_script_enable_autolog_prebuilt_container(self, shared_state)
display_name=display_name,
script_path=_LOCAL_TRAINING_SCRIPT_PATH,
container_uri=_PREBUILT_CONTAINER_IMAGE,
requirements=["scikit-learn"],
requirements=["scikit-learn", "pandas"],
enable_autolog=True,
)

Expand Down Expand Up @@ -155,7 +155,7 @@ def test_from_local_script_enable_autolog_custom_container(self, shared_state):
display_name=display_name,
script_path=_LOCAL_TRAINING_SCRIPT_PATH,
container_uri=_CUSTOM_CONTAINER_IMAGE,
requirements=["scikit-learn"],
requirements=["scikit-learn", "pandas"],
enable_autolog=True,
)

Expand Down

0 comments on commit 8bf6477

Please sign in to comment.