pytest-codeblock 0.5.8__tar.gz → 0.5.9__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.
- {pytest_codeblock-0.5.8/src/pytest_codeblock.egg-info → pytest_codeblock-0.5.9}/PKG-INFO +1 -2
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/pyproject.toml +3 -3
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/__init__.py +1 -1
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9/src/pytest_codeblock.egg-info}/PKG-INFO +1 -2
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/requires.txt +0 -1
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/LICENSE +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/README.rst +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/setup.cfg +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/collector.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/config.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/constants.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/helpers.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/md.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/pytestrun.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/rst.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/__init__.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_customisation.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_integration.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_nameless_codeblocks.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_pytest_codeblock.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_pytestrun_marker.py +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/SOURCES.txt +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/dependency_links.txt +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/entry_points.txt +0 -0
- {pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-codeblock
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.9
|
|
4
4
|
Summary: Pytest plugin to collect and test code blocks in reStructuredText and Markdown files.
|
|
5
5
|
Author-email: Artur Barseghyan <artur.barseghyan@gmail.com>
|
|
6
6
|
Maintainer-email: Artur Barseghyan <artur.barseghyan@gmail.com>
|
|
@@ -41,7 +41,6 @@ Requires-Dist: twine; extra == "dev"
|
|
|
41
41
|
Requires-Dist: uv; extra == "dev"
|
|
42
42
|
Provides-Extra: test
|
|
43
43
|
Requires-Dist: django; extra == "test"
|
|
44
|
-
Requires-Dist: fake.py; extra == "test"
|
|
45
44
|
Requires-Dist: moto[s3]; extra == "test"
|
|
46
45
|
Requires-Dist: openai; extra == "test"
|
|
47
46
|
Requires-Dist: pytest; extra == "test"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name = "pytest-codeblock"
|
|
3
3
|
description = "Pytest plugin to collect and test code blocks in reStructuredText and Markdown files."
|
|
4
4
|
readme = "README.rst"
|
|
5
|
-
version = "0.5.
|
|
5
|
+
version = "0.5.9"
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
dependencies = [
|
|
8
8
|
"pytest",
|
|
@@ -59,7 +59,6 @@ dev = [
|
|
|
59
59
|
]
|
|
60
60
|
test = [
|
|
61
61
|
"django",
|
|
62
|
-
"fake.py",
|
|
63
62
|
"moto[s3]",
|
|
64
63
|
"openai",
|
|
65
64
|
"pytest",
|
|
@@ -151,6 +150,7 @@ target-version = "py39"
|
|
|
151
150
|
|
|
152
151
|
[tool.ruff.lint.per-file-ignores]
|
|
153
152
|
"conftest.py" = ["PERF203"]
|
|
153
|
+
"src/fake.py" = ["INP001"]
|
|
154
154
|
|
|
155
155
|
[tool.ruff.lint.isort]
|
|
156
156
|
known-first-party = ["pytest_codeblock"]
|
|
@@ -224,7 +224,7 @@ ignore_missing_imports = true
|
|
|
224
224
|
|
|
225
225
|
[tool.pydoclint]
|
|
226
226
|
style = "sphinx"
|
|
227
|
-
exclude = "\\.git|\\.tox|tests/data|\\.venv"
|
|
227
|
+
exclude = "\\.git|\\.tox|tests/data|\\.venv|fake"
|
|
228
228
|
require-return-section-when-returning-nothing = false
|
|
229
229
|
allow-init-docstring = true
|
|
230
230
|
arg-type-hints-in-docstring = false
|
|
@@ -6,7 +6,7 @@ from .md import MarkdownFile
|
|
|
6
6
|
from .rst import RSTFile
|
|
7
7
|
|
|
8
8
|
__title__ = "pytest-codeblock"
|
|
9
|
-
__version__ = "0.5.
|
|
9
|
+
__version__ = "0.5.9"
|
|
10
10
|
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
|
|
11
11
|
__copyright__ = "2025-2026 Artur Barseghyan"
|
|
12
12
|
__license__ = "MIT"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-codeblock
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.9
|
|
4
4
|
Summary: Pytest plugin to collect and test code blocks in reStructuredText and Markdown files.
|
|
5
5
|
Author-email: Artur Barseghyan <artur.barseghyan@gmail.com>
|
|
6
6
|
Maintainer-email: Artur Barseghyan <artur.barseghyan@gmail.com>
|
|
@@ -41,7 +41,6 @@ Requires-Dist: twine; extra == "dev"
|
|
|
41
41
|
Requires-Dist: uv; extra == "dev"
|
|
42
42
|
Provides-Extra: test
|
|
43
43
|
Requires-Dist: django; extra == "test"
|
|
44
|
-
Requires-Dist: fake.py; extra == "test"
|
|
45
44
|
Requires-Dist: moto[s3]; extra == "test"
|
|
46
45
|
Requires-Dist: openai; extra == "test"
|
|
47
46
|
Requires-Dist: pytest; extra == "test"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_customisation.py
RENAMED
|
File without changes
|
{pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock/tests/test_integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{pytest_codeblock-0.5.8 → pytest_codeblock-0.5.9}/src/pytest_codeblock.egg-info/top_level.txt
RENAMED
|
File without changes
|