Library pytest-spec is a pytest plugin to display test execution output like a SPECIFICATION.
Project description
pytest-spec
Library pytest-spec is a pytest plugin to display test execution output like a SPECIFICATION.
Available features
- Format output to look like specification.
- Group tests by classes and files
- Failed, passed and skipped are marked and colored.
- Remove test_ and underscores for every test.
- It is possible to use docstring summary instead of test name.
- Supports function based, class based test.
- Supports describe like tests.
Output example
Configuration
spec_header_format
You can configure the format of the test headers by specifying a format string in your ini-file:
[tool:pytest]
spec_header_format = {module_path}:
In addition to the {path} and {class_name} replacement fields, there is also {test_case} that holds a more human readable name.
spec_test_format
You can configure the format of the test results by specifying a format string in your ini-file:
3 variables are available:
- result - place for indicator
- name - name of test
- docstring_summary - first line from test docstring if available
[tool:pytest]
spec_test_format = {result} {name}
or
[tool:pytest]
spec_test_format = {result} {docstring_summary}
In second example where docstring is not available the name will be added to spec output.
spec_success_indicator
You can configure the indicator displayed when test passed.
[tool:pytest]
spec_success_indicator = ✓
spec_failure_indicator
You can configure the indicator displated when test failed.
[tool:pytest]
spec_failure_indicator = ✗
spec_skipped_indicator
You can configure the indicator displated when test is skipped.
[tool:pytest]
spec_skipped_indicator = ?
spec_ignore
Comma-separated settings to ignore/hide some tests or output from from plugins like FLAKE8 or ISORT. Any test which contain provided string will be ignored in output spec.
[tool:pytest]
spec_ignore = FLAKE8
spec_indent
[tool:pytest]
spec_indent = " "
Continuous Integration
Download
All versions of library are available on official pypi server.
Install
pip install pytest-spec
Contribution
Please feel free to present your idea by code example (pull request) or reported issues.
Contributors
License
pytest-spec - pytest plugin to display test execution output like a SPECIFICATION.
Copyright (C) 2014-2021 Pawel Chomicki
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-spec-3.2.0.tar.gz.
File metadata
- Download URL: pytest-spec-3.2.0.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4af154588195f4bb6c62d6ca030a20218db7d80b675a08897d9a99239ea3d087
|
|
| MD5 |
b4615a65a63f1248f8abb44ed136166c
|
|
| BLAKE2b-256 |
ea9f61c27fbad6cddc593405b072a726ff67c43c4802a54ddb22ffbcb1c25ae5
|
File details
Details for the file pytest_spec-3.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: pytest_spec-3.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
128dd1e133c72d6a18b28ed96d0af0fc43aece8f796ebcfcd81c850f0094b62e
|
|
| MD5 |
95f9f874a654b93099736a1c18995d8c
|
|
| BLAKE2b-256 |
f099ccc8061043646dd178052e17a6f3ba3c392024694a8a84f2462045745bc5
|