Skip to content

Commit 8d4f264

Browse files
committed
fix tests
1 parent 537e38a commit 8d4f264

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repos:
2222
- id: no-commit-to-branch
2323
# NOTE: Keep order as pyupgrade (will update code) then pycln (remove unused imports), then isort (sort them) and black (final formatting)
2424
- repo: https://github.com/asottile/pyupgrade
25-
rev: v3.21.1
25+
rev: v3.21.2
2626
hooks:
2727
- id: pyupgrade
2828
args:

packages/aws-library/src/aws_library/ec2/_models.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,21 @@ def _update_json_schema_extra(schema: JsonDict) -> None:
371371
],
372372
"buffer_count": 10,
373373
},
374+
{
375+
# AMI + pre-pull + buffer count + custom node labels
376+
"ami_id": "ami-123456789abcdef",
377+
"pre_pull_images": [
378+
"nginx:latest",
379+
"itisfoundation/my-very-nice-service:latest",
380+
"simcore/services/dynamic/another-nice-one:2.4.5",
381+
"asd",
382+
],
383+
"buffer_count": 10,
384+
"custom_node_labels": {
385+
"io.simcore.project-id": "value1",
386+
"io.simcore.user-id": "value2",
387+
},
388+
},
374389
]
375390
}
376391
)

0 commit comments

Comments
 (0)