File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1122,8 +1122,10 @@ def test_get_codeartifact_command(pipeline_session):
1122
1122
codeartifact_repo_arn = codeartifact_repo_arn
1123
1123
)
1124
1124
1125
- assert codeartifact_command == \
1126
- "aws codeartifact login --tool pip --domain test-domain --domain-owner 012345678901 --repository test-repository --region us-west-2" # noqa: E501
1125
+ assert (
1126
+ codeartifact_command
1127
+ == "aws codeartifact login --tool pip --domain test-domain --domain-owner 012345678901 --repository test-repository --region us-west-2" # noqa: E501 # pylint: disable=line-too-long
1128
+ )
1127
1129
1128
1130
1129
1131
@patch ("sagemaker.workflow.utilities._pipeline_config" , MOCKED_PIPELINE_CONFIG )
@@ -1228,7 +1230,7 @@ def test_generate_framework_script_with_codeartifact(pipeline_session):
1228
1230
fi
1229
1231
1230
1232
python process.py "$@"
1231
- """ # noqa: E501
1233
+ """ # noqa: E501 # pylint: disable=line-too-long
1232
1234
)
1233
1235
1234
1236
You can’t perform that action at this time.
0 commit comments