forked from red-hat-data-services/ods-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3fb1ef0
commit 1dbd4ef
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
...ests/Tests/0600__distributed_workloads/0602__training/test-run-training-stack-tests.robot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
*** Settings *** | ||
Documentation Training operator E2E tests - https://github.com/opendatahub-io/distributed-workloads/tree/main/tests/kfto/core | ||
Suite Setup Prepare Training Operator E2E Core Test Suite | ||
Suite Teardown Teardown Training Operator E2E Core Test Suite | ||
Library OperatingSystem | ||
Library Process | ||
Resource ../../../../tasks/Resources/RHODS_OLM/install/oc_install.robot | ||
Resource ../../../../tests/Resources/Page/DistributedWorkloads/DistributedWorkloads.resource | ||
|
||
|
||
*** Test Cases *** | ||
Run Training operator KFTO test with NVIDIA CUDA image | ||
[Documentation] Run Go KFTO tests for Training operator using PyTorch job with NVIDIA CUDA image | ||
[Tags] Resources-GPU NVIDIA-GPUs | ||
... RHOAIENG-16035 | ||
... Tier1 | ||
... DistributedWorkloads | ||
... Training | ||
... TrainingOperator | ||
Run Training Operator KFTO Test TestPyTorchJobWithCuda ${CUDA_TRAINING_IMAGE} | ||
|
||
Run Training operator KFTO test with AMD ROCm image | ||
[Documentation] Run Go KFTO tests for Training operator using PyTorch job with AMD ROCm image | ||
[Tags] Resources-GPU AMD-GPUs ROCm | ||
... RHOAIENG-16035 | ||
... Tier1 | ||
... DistributedWorkloads | ||
... Training | ||
... TrainingOperator | ||
Run Training Operator KFTO Test TestPyTorchJobWithROCm ${ROCM_TRAINING_IMAGE} | ||
|
||
Run Training operator KFTO error handling test with NVIDIA CUDA image | ||
[Documentation] Run Go KFTO error handling tests for Training operator using PyTorch job with NVIDIA CUDA image | ||
[Tags] RHOAIENG-14542 | ||
... Tier1 | ||
... DistributedWorkloads | ||
... Training | ||
... TrainingOperator | ||
Run Training Operator KFTO Test TestPyTorchJobFailureWithCuda ${CUDA_TRAINING_IMAGE} | ||
|
||
Run Training operator KFTO error handling test with AMD ROCm image | ||
[Documentation] Run Go KFTO error handling tests for Training operator using PyTorch job with AMD ROCm image | ||
[Tags] RHOAIENG-14542 | ||
... Tier1 | ||
... DistributedWorkloads | ||
... Training | ||
... TrainingOperator | ||
Run Training Operator KFTO Test TestPyTorchJobFailureWithROCm ${ROCM_TRAINING_IMAGE} |