Skip to main content

pytest-static

Project description

pytest-static

PyPI Status Python Version License

Read the documentation at https://pytest-static.readthedocs.io/ Tests Codecov

pre-commit Black

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_static-1.1.1.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_static-1.1.1-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file pytest_static-1.1.1.tar.gz.

File metadata

  • Download URL: pytest_static-1.1.1.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.10.5 Windows/10

File hashes

Hashes for pytest_static-1.1.1.tar.gz
Algorithm Hash digest
SHA256 b6fa88d5ad5d95b20e8b25f6dfa984c9f9ab6b4c570844c9e476e4c900a2cc59
MD5 852daa5fe428a933f44cc01ac32f9ca3
BLAKE2b-256 6b3c95d61ca3a02f556dc4c5185693f7d8894f7335f09f6a776eee35f6943d5d

See more details on using hashes here.

File details

Details for the file pytest_static-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: pytest_static-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.10.5 Windows/10

File hashes

Hashes for pytest_static-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e8012e3a29ff34d089a993fc8112c6866fb51786673c4e015b731e6cd7775a89
MD5 3367713037269d233e87791290a407c9
BLAKE2b-256 feac8411c778fd256e82213e719ad8f351bd754c6e680d469f1fbb265f17cc9e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page