pytest-devtools 1.0.0__tar.gz → 1.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pytest-devtools
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Pytest plugin providing debug fixtures, ANSI-stripped capsys, whitespace-visible assertions, and terminal column management.
5
5
  Author: Nathaniel Landau
6
6
  Author-email: Nathaniel Landau <github@natelandau.com>
@@ -15,14 +15,15 @@ License: MIT License
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16
16
  Classifier: Framework :: Pytest
17
17
  Classifier: Intended Audience :: Developers
18
+ Classifier: Programming Language :: Python :: 3.10
18
19
  Classifier: Programming Language :: Python :: 3.11
19
20
  Classifier: Programming Language :: Python :: 3.12
20
21
  Classifier: Programming Language :: Python :: 3.13
21
22
  Classifier: Programming Language :: Python :: 3.14
22
23
  Classifier: Topic :: Software Development :: Testing
23
- Requires-Dist: pytest>=9.0.2
24
- Requires-Dist: rich>=14.3.2
25
- Requires-Python: >=3.11
24
+ Requires-Dist: pytest>=9.0.3
25
+ Requires-Dist: rich>=15.0.0
26
+ Requires-Python: >=3.10
26
27
  Description-Content-Type: text/markdown
27
28
 
28
29
  # pytest-devtools
@@ -3,43 +3,44 @@
3
3
  classifiers = [
4
4
  "Framework :: Pytest",
5
5
  "Intended Audience :: Developers",
6
+ "Programming Language :: Python :: 3.10",
6
7
  "Programming Language :: Python :: 3.11",
7
8
  "Programming Language :: Python :: 3.12",
8
9
  "Programming Language :: Python :: 3.13",
9
10
  "Programming Language :: Python :: 3.14",
10
11
  "Topic :: Software Development :: Testing",
11
12
  ]
12
- dependencies = ["pytest>=9.0.2", "rich>=14.3.2"]
13
+ dependencies = ["pytest>=9.0.3", "rich>=15.0.0"]
13
14
  description = "Pytest plugin providing debug fixtures, ANSI-stripped capsys, whitespace-visible assertions, and terminal column management."
14
15
  license = { file = "LICENSE" }
15
16
  name = "pytest-devtools"
16
17
  readme = "README.md"
17
- requires-python = ">=3.11"
18
- version = "1.0.0"
18
+ requires-python = ">=3.10"
19
+ version = "1.1.0"
19
20
 
20
21
  [project.entry-points.pytest11]
21
22
  pytest-devtools = "devtools.plugin"
22
23
 
23
24
  [build-system]
24
25
  build-backend = "uv_build"
25
- requires = ["uv_build>=0.10.0,<0.11.0"]
26
+ requires = ["uv_build>=0.11.8,<0.12.0"]
26
27
 
27
28
  [tool.uv.build-backend]
28
29
  module-name = "devtools"
29
30
 
30
31
  [dependency-groups]
31
32
  dev = [
32
- "commitizen>=4.13.7",
33
+ "commitizen>=4.15.0",
33
34
  "duty>=1.9.0",
34
- "prek>=0.3.2",
35
+ "prek>=0.3.11",
35
36
  "pytest-clarity>=1.0.1",
36
37
  "pytest-mock>=3.15.1",
37
38
  "pytest-repeat>=0.9.4",
38
39
  "pytest-sugar>=1.1.1",
39
40
  "pytest-xdist>=3.8.0",
40
- "ruff>=0.15.0",
41
- "ty>=0.0.15",
42
- "typos>=1.43.4",
41
+ "ruff>=0.15.12",
42
+ "ty>=0.0.34",
43
+ "typos>=1.46.0",
43
44
  "yamllint>=1.38.0",
44
45
  ]
45
46
 
@@ -67,7 +68,7 @@
67
68
  line-length = 100
68
69
  output-format = "grouped"
69
70
  src = ["src", "tests"]
70
- target-version = "py311"
71
+ target-version = "py310"
71
72
  [tool.ruff.lint]
72
73
  ignore = [
73
74
  "ANN002", # Missing type annotation for `*args`
@@ -132,3 +133,6 @@
132
133
  line-ending = "auto"
133
134
  quote-style = "double"
134
135
  skip-magic-trailing-comma = false
136
+
137
+ [tool.ty.terminal]
138
+ error-on-warning = true
@@ -44,7 +44,7 @@ def pytest_runtest_makereport(
44
44
  The test report.
45
45
  """
46
46
  rep = yield
47
- item.stash.setdefault(phase_report_key, {})[rep.when] = rep
47
+ item.stash.setdefault(phase_report_key, {})[rep.when] = rep # ty:ignore[invalid-assignment]
48
48
  return rep
49
49
 
50
50
 
File without changes