Skip to content

Commit 5a7eb61

Browse files
committed
chore(deps): pytest 9.x allowed
1 parent 65acfe2 commit 5a7eb61

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

setup.cfg

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pytest-docker
3-
version = 3.2.3
3+
version = 3.2.4
44
description = Simple pytest fixtures for Docker and Docker Compose based tests
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -35,7 +35,7 @@ package_dir=
3535
packages=pytest_docker
3636

3737
install_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,8 @@ strict = true
8585
mypy_path = "src/pytest_docker,tests"
8686
namespace_packages = true
8787
warn_unused_ignores = true
88+
warn_return_any = false
89+
90+
[tool.mypy.overrides]
91+
module = "py.*"
92+
ignore_missing_imports = true

tests/test_dockercomposeexecutor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_execute_docker_compose_v2() -> None:
3333

3434
def 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 == [

0 commit comments

Comments
 (0)