File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -443,6 +443,16 @@ def test_processing_job_from_processing_arn(sagemaker_session):
443
443
processing_job_arn = "arn:aws:sagemaker:dummy-region:dummy-account-number:processing-job/dummy-job-name" ,
444
444
)
445
445
assert isinstance (processing_job , ProcessingJob )
446
+ assert [
447
+ processing_input ._to_request_dict () for processing_input in processing_job .inputs
448
+ ] == PROCESSING_JOB_DESCRIPTION ["ProcessingInputs" ]
449
+ assert [
450
+ processing_output ._to_request_dict () for processing_output in processing_job .outputs
451
+ ] == PROCESSING_JOB_DESCRIPTION ["ProcessingOutputConfig" ]["Outputs" ]
452
+ assert (
453
+ processing_job .output_kms_key
454
+ == PROCESSING_JOB_DESCRIPTION ["ProcessingOutputConfig" ]["KmsKeyId" ]
455
+ )
446
456
447
457
448
458
def _get_script_processor (sagemaker_session ):
You can’t perform that action at this time.
0 commit comments