Embed unit test snippets into human-readable documentation
Project description
Spocktest
Spocktest is a Python tool that runs tests for code snippets defined in standard Python files and injects them into documentation. Think of it as doctest but the other way around.
Motivation
The primary motivation behind Spocktest is the poor debuggability of tests generated with sphinx-doctest
. While the standard doctest
module does a good job of running code snippets against expected output, I've had much less luck with debugging sphinx-doctest
.
I am currently of the belief that example code should be injected into documentation instead of the documentation to serve as a place to keep any tests and this repo will serve both as an experiment and as a potentially useful tool for building well-tested Wikis for Python software.
Current status
Spocktest is in early stages of development. If used in production, it's recommended you always create a copy of the output documentation with --output
flag to prevent any latent bugs from clobbering your documentation source files. Apart from that make sure to keep your documentation under VCS!
How it works
-
A snippet is defined as a portion of code in a unit test file between an ID portion and a comment that ends the snippet, e.g.
def test_snippet_1(self): a = 1 a += 1 # SNIPPET_END self.assertEqual(a, 2)
As you can see the ending tag is useful to focus the snippet on the relevant code and omit testing boilerplate.
-
A placeholder is defined as a pattern that will be substituted with a concrete snippet, e.g.
# Doc1 ```python # --Snippet--: 1 ```
-
The defaults are configured for Python but nearly all behavior is configurable with Regex patterns:
- By default all snippet tests should be named:
test_snippet_{{ID}}
.- Can be overridden with
--pattern
flag.
- Can be overridden with
- By default
# SNIPPET_END
is the default ending tag.- Can be overridden with
--end
flag.
- Can be overridden with
- All patterns must be matched exactly e.g.
#SNIPPET_END
will not work! - By default placeholders are written as
# --Snippet--: {{ID}}
.- Can be overridden with
--target-pattern
flag.
- Can be overridden with
- By default
.md
and.rst
files are supported for substitution.- Can be overridden with
--doc-exts
flag.
- Can be overridden with
- By default
.oy
files are searched for snippets.- Can be overridden with
--code-exts
flag.
- Can be overridden with
- By default the
{{ID}}
value needs to match(\w+)
regex pattern, i.e spaces are not supported, unless overridden.- Can be overridden with
--id-regex-ovd
flag.
- Can be overridden with
- By default all snippet tests should be named:
Installation and Usage
- Run
pip install spocktest
. - Run
spocktest <path to test folder> <path to docs folder> -o <path to output folder>
.
As of now it's recommended to use the -o
flag at all times but if you're brave you can try modifying your docs in-place. If you omit the -o
flag the docs folder will be replaced with an interpolated version.
To fine-tune extra configuration options use spocktest --help
.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file spocktest-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: spocktest-1.0.3-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af852161399baf0c6c0fdddc42fa759e78b8e86734b094d95a3ec4d030f8c38e |
|
MD5 | 33a0ae24a27b33b80b22efa3d5b13ef3 |
|
BLAKE2b-256 | 53ac9f4131c85bf340a7e468fb792f2dcb2acfcb0868bf71b0697571930eac82 |