pytest-static
Project description
pytest-static
Overview
pytest-static is a pytest plugin that allows you to parametrize your tests using type annotations.
What this looks like in practice is that you can write a test like this:
import pytest
@pytest.mark.parametrize_types("a", [tuple[bool, bool]])
def test_a(a: bool) -> None:
assert isinstance(a, bool)
Which would be equivalent to the following test
import pytest
@pytest.mark.parametrize("a", [(True, True), (True, False), (False, True), (False, False)])
def test_a(a: int) -> None:
assert isinstance(a, int)
For types such as int, str, etc that have an unlimited amount of values, there are premade sets meant to cover common edge cases that are used by default
These premade sets can be modified or added to using the type_handlers.register decorator, or the type_handlers.clear function.
Features
- TODO
Requirements
- TODO
Installation
You can install pytest-static via pip from PyPI:
$ pip install pytest-static
Usage
Please see the Command-line Reference for details.
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the MIT license, pytest-static is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Credits
This project was generated from @cjolowicz's Hypermodern Python Cookiecutter template.
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
Hashes for pytest_static-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08aa041788a4fc30fda74a8f54e0ffae537105f13008c4af72acabdf496d10e0 |
|
MD5 | 039ae41e80be779f9a8ba946f5e341fc |
|
BLAKE2b-256 | 2782036bc9a2ee268983dbc2e92c4efdbb50f43cd27cc72eef65844d14a5473f |