Skip to content

Commit 3175615

Browse files
authoredFeb 7, 2024
fix: support pytest 8 (#855)
* chore: update devcontainer python to 3.12 * chore: update poetry to 1.7.1 * fix: support pytest 8
1 parent 950997e commit 3175615

10 files changed

+340
-335
lines changed
 

‎.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.224.3/containers/python-3/.devcontainer/base.Dockerfile
22

33
# [Choice] Python version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.10, 3.9, 3.8, 3.7, 3.6, 3-bullseye, 3.10-bullseye, 3.9-bullseye, 3.8-bullseye, 3.7-bullseye, 3.6-bullseye, 3-buster, 3.10-buster, 3.9-buster, 3.8-buster, 3.7-buster, 3.6-buster
4-
ARG VARIANT="3.11-bullseye"
5-
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
4+
ARG VARIANT="3.12-bookworm"
5+
FROM mcr.microsoft.com/devcontainers/python:${VARIANT}
66

77
# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
88
ARG NODE_VERSION="none"

‎.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Update 'VARIANT' to pick a Python version: 3, 3.10, 3.9, 3.8, 3.7, 3.6
1010
// Append -bullseye or -buster to pin to an OS version.
1111
// Use -bullseye variants on local on arm64/Apple Silicon.
12-
"VARIANT": "3.11-bullseye",
12+
"VARIANT": "3.12-bookworm",
1313
// Options
1414
"NODE_VERSION": "none"
1515
}

‎.github/renovate.json5

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"stabilityDays": 7,
77
"labels": ["dependencies"],
88
"constraints": {
9-
"poetry": "1.6.1"
9+
"poetry": "1.7.1"
1010
},
1111
}

‎.poetry-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.1
1+
1.7.1

‎poetry.lock

+321-322
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ syrupy = 'syrupy'
2929

3030
[tool.poetry.dependencies]
3131
python = '>=3.8.1,<4'
32-
pytest = '>=7.0.0,<8.0.0'
32+
pytest = '>=7.0.0,<9.0.0'
3333

3434
[tool.poetry.group.test.dependencies]
3535
invoke = '^2.0.0'
@@ -39,7 +39,7 @@ pytest-xdist = '^3.1.0'
3939

4040
[tool.poetry.group.dev.dependencies]
4141
isort = '^5.12.0'
42-
black = '^23.1.0'
42+
black = '^24.1.0'
4343
mypy = '^1.0.1'
4444
py-githooks = '^1.1.1'
4545
flake8 = '^7.0.0'

‎src/syrupy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def pytest_runtest_logfinish(nodeid: str) -> None:
156156
_syrupy.ran_item(nodeid)
157157

158158

159-
@pytest.hookimpl(tryfirst=True) # type: ignore[misc]
159+
@pytest.hookimpl(tryfirst=True)
160160
def pytest_sessionfinish(session: "pytest.Session", exitstatus: int) -> None:
161161
"""
162162
Finish session run and set exit status.

‎tests/examples/test_custom_defaults.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
and then simply re-use them, without having to pass those defaults to every assert.
66
Especially useful if there's a lot of tests that need to modify the default behaviour.
77
"""
8+
89
import pytest
910

1011
from syrupy.extensions.json import JSONSnapshotExtension

‎tests/examples/test_custom_snapshot_name.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Example: Custom Snapshot Name
33
"""
4+
45
import pytest
56

67
from syrupy.extensions.amber import AmberSnapshotExtension

‎tests/integration/test_pytest_extension.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,20 @@ def test_ignores_non_function_nodes(testdir):
22
conftest = """
33
import pytest
44
5-
class CustomItem(pytest.Item, pytest.File):
6-
def __init__(self, *args, fspath, parent, **kwargs):
7-
super().__init__(fspath, parent=parent)
5+
class CustomItem(pytest.Item):
6+
def __init__(self, name, **kwargs):
7+
super().__init__(name, **kwargs)
88
self._nodeid += "::CUSTOM"
99
1010
def runtest(self):
1111
pass
1212
13-
def pytest_collect_file(path, parent):
14-
return CustomItem.from_parent(fspath=path, parent=parent)
13+
def pytest_collect_file(file_path, parent):
14+
return CustomItem.from_parent(
15+
name=file_path.name,
16+
path=file_path,
17+
parent=parent
18+
)
1519
"""
1620
testcase = """
1721
def test_example(snapshot):

0 commit comments

Comments
 (0)
Please sign in to comment.