Skip to content

Bump types-docker from 7.1.0.20240626 to 7.1.0.20240628 #2141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 28, 2024
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ optional-dependencies.dev = [
"sphinxcontrib-spelling==8",
"sybil==6.1.1",
"tenacity==8.4.2",
"types-docker==7.1.0.20240626",
"types-docker==7.1.0.20240628",
"types-pillow==10.2.0.20240520",
"types-pyyaml==6.0.12.20240311",
"types-requests==2.32.0.20240622",
Expand Down
9 changes: 6 additions & 3 deletions tests/mock_vws/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,15 @@
f"http://{target_manager_container_name}:5000"
)

target_manager_container = client.containers.run( # pyright: ignore[reportUnknownMemberType]
target_manager_container = client.containers.run(

Check warning on line 160 in tests/mock_vws/test_docker.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L160

Added line #L160 was not covered by tests
image=target_manager_image,
detach=True,
name=target_manager_container_name,
publish_all_ports=True,
network=custom_bridge_network.name,
version="auto",
)
vws_container = client.containers.run( # pyright: ignore[reportUnknownMemberType]
vws_container = client.containers.run(

Check warning on line 168 in tests/mock_vws/test_docker.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L168

Added line #L168 was not covered by tests
image=vws_image,
detach=True,
name="vws-mock-vws-" + random,
Expand All @@ -173,8 +174,9 @@
environment={
"TARGET_MANAGER_BASE_URL": target_manager_internal_base_url,
},
version="auto",
)
vwq_container = client.containers.run( # pyright: ignore[reportUnknownMemberType]
vwq_container = client.containers.run(

Check warning on line 179 in tests/mock_vws/test_docker.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L179

Added line #L179 was not covered by tests
image=vwq_image,
detach=True,
name="vws-mock-vwq-" + random,
Expand All @@ -183,6 +185,7 @@
environment={
"TARGET_MANAGER_BASE_URL": target_manager_internal_base_url,
},
version="auto",
)

for container in (target_manager_container, vws_container, vwq_container):
Expand Down
Loading