pytest-codeblock 0.5__tar.gz → 0.5.1__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.
Files changed (24) hide show
  1. {pytest_codeblock-0.5/src/pytest_codeblock.egg-info → pytest_codeblock-0.5.1}/PKG-INFO +3 -1
  2. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/pyproject.toml +3 -1
  3. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/__init__.py +1 -1
  4. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1/src/pytest_codeblock.egg-info}/PKG-INFO +3 -1
  5. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock.egg-info/requires.txt +2 -0
  6. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/LICENSE +0 -0
  7. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/README.rst +0 -0
  8. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/setup.cfg +0 -0
  9. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/collector.py +0 -0
  10. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/config.py +0 -0
  11. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/constants.py +0 -0
  12. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/helpers.py +0 -0
  13. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/md.py +0 -0
  14. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/rst.py +0 -0
  15. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/__init__.py +0 -0
  16. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/conftest.py +0 -0
  17. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/test_customisation.py +0 -0
  18. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/test_integration.py +0 -0
  19. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/test_nameless_codeblocks.py +0 -0
  20. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock/tests/test_pytest_codeblock.py +0 -0
  21. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock.egg-info/SOURCES.txt +0 -0
  22. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock.egg-info/dependency_links.txt +0 -0
  23. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/src/pytest_codeblock.egg-info/entry_points.txt +0 -0
  24. {pytest_codeblock-0.5 → pytest_codeblock-0.5.1}/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.1
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>
@@ -47,12 +47,14 @@ Requires-Dist: openai; extra == "test"
47
47
  Requires-Dist: pytest; extra == "test"
48
48
  Requires-Dist: pytest-cov; extra == "test"
49
49
  Requires-Dist: pytest-django; extra == "test"
50
+ Requires-Dist: respx; extra == "test"
50
51
  Provides-Extra: docs
51
52
  Requires-Dist: sphinx; extra == "docs"
52
53
  Requires-Dist: sphinx-autobuild; extra == "docs"
53
54
  Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
54
55
  Requires-Dist: sphinx-no-pragma; extra == "docs"
55
56
  Requires-Dist: sphinx-llms-txt-link; extra == "docs"
57
+ Requires-Dist: sphinx-source-tree; extra == "docs"
56
58
  Provides-Extra: build
57
59
  Requires-Dist: build; extra == "build"
58
60
  Requires-Dist: twine; extra == "build"
@@ -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.1"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
8
  "pytest",
@@ -65,6 +65,7 @@ test = [
65
65
  "pytest",
66
66
  "pytest-cov",
67
67
  "pytest-django",
68
+ "respx",
68
69
  ]
69
70
  docs = [
70
71
  "sphinx",
@@ -72,6 +73,7 @@ docs = [
72
73
  "sphinx-rtd-theme>=1.3.0",
73
74
  "sphinx-no-pragma",
74
75
  "sphinx-llms-txt-link",
76
+ "sphinx-source-tree",
75
77
  # "standard-imghdr",
76
78
  ]
77
79
  build = [
@@ -5,7 +5,7 @@ from .md import MarkdownFile
5
5
  from .rst import RSTFile
6
6
 
7
7
  __title__ = "pytest-codeblock"
8
- __version__ = "0.5"
8
+ __version__ = "0.5.1"
9
9
  __author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
10
10
  __copyright__ = "2025-2026 Artur Barseghyan"
11
11
  __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.1
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>
@@ -47,12 +47,14 @@ Requires-Dist: openai; extra == "test"
47
47
  Requires-Dist: pytest; extra == "test"
48
48
  Requires-Dist: pytest-cov; extra == "test"
49
49
  Requires-Dist: pytest-django; extra == "test"
50
+ Requires-Dist: respx; extra == "test"
50
51
  Provides-Extra: docs
51
52
  Requires-Dist: sphinx; extra == "docs"
52
53
  Requires-Dist: sphinx-autobuild; extra == "docs"
53
54
  Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
54
55
  Requires-Dist: sphinx-no-pragma; extra == "docs"
55
56
  Requires-Dist: sphinx-llms-txt-link; extra == "docs"
57
+ Requires-Dist: sphinx-source-tree; extra == "docs"
56
58
  Provides-Extra: build
57
59
  Requires-Dist: build; extra == "build"
58
60
  Requires-Dist: twine; extra == "build"
@@ -27,6 +27,7 @@ sphinx-autobuild
27
27
  sphinx-rtd-theme>=1.3.0
28
28
  sphinx-no-pragma
29
29
  sphinx-llms-txt-link
30
+ sphinx-source-tree
30
31
 
31
32
  [test]
32
33
  django
@@ -36,3 +37,4 @@ openai
36
37
  pytest
37
38
  pytest-cov
38
39
  pytest-django
40
+ respx
File without changes