File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11[metadata]
22name = pytest-docker
3- version = 3.2.3
3+ version = 3.2.4
44description = Simple pytest fixtures for Docker and Docker Compose based tests
55long_description = file: README.md
66long_description_content_type = text/markdown
@@ -35,7 +35,7 @@ package_dir=
3535packages =pytest_docker
3636
3737install_requires =
38- pytest >=4.0, <9 .0
38+ pytest >=4.0, <10 .0
3939 attrs >=19.2.0
4040
4141[options.extras_require]
@@ -85,3 +85,9 @@ strict = true
8585mypy_path = " src/pytest_docker,tests"
8686namespace_packages = true
8787warn_unused_ignores = true
88+ warn_return_any = false
89+
90+ # Handle untyped imports
91+ [[tool.mypy.overrides] ]
92+ module = " py.*"
93+ ignore_missing_imports = true
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def test_execute_docker_compose_v2() -> None:
3333
3434def test_pypath_compose_files () -> None :
3535 compose_file : py .path .local = py .path .local ("/tmp/docker-compose.yml" )
36- docker_compose = DockerComposeExecutor ("docker compose" , compose_file , "pytest123" ) # type: ignore
36+ docker_compose = DockerComposeExecutor ("docker compose" , compose_file , "pytest123" )
3737 with mock .patch ("subprocess.check_output" ) as check_output :
3838 docker_compose .execute ("up" )
3939 assert check_output .call_args_list == [
You can’t perform that action at this time.
0 commit comments