Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Werkzeug<2.1
#Need to add Schemas latest SDK.
boto3>=1.19.5,==1.*
jmespath~=0.10.0
PyYAML~=5.3
PyYAML>=5.4.1,==5.*
Comment thread
mndeveci marked this conversation as resolved.
cookiecutter~=2.1.1
aws-sam-translator==1.55.0
#docker minor version updates can include breaking changes. Auto update micro version only.
Expand Down
8 changes: 4 additions & 4 deletions tests/integration/validate/test_validate_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ class TestValidate(TestCase):
def setUpClass(cls):
cls.patterns = {
TemplateFileTypes.JSON: re.compile(
r"template\.json can be transformed to a Cloudformation template."
' Please run "sam validate --lint -t template.yaml" for additional validation(\r\n)?$'
r"template\.json is a valid SAM Template. This is according to basic SAM Validation, "
'for additional validation, please run "sam validate --lint"(\r\n)?$'
),
TemplateFileTypes.YAML: re.compile(
r"template\.yaml can be transformed to a Cloudformation template."
' Please run "sam validate --lint -t template.yaml" for additional validation(\r\n)?$'
r"template\.yaml is a valid SAM Template. This is according to basic SAM Validation, "
'for additional validation, please run "sam validate --lint"(\r\n)?$'
),
}
cls.lint_patterns = {
Expand Down