A framework for testing type expectations
Project description
typest
An experimental framework to test your library against type checkers, allowing
to formulate type expectations and expected typechecker errors. Its purpose is
the same as the one of
pytest-mypy-plugins. While
pytest-mypy-plugins
requires .yaml
files for specifying the tests, typest
test cases are python files, expectations are formulated in comments:
from mylibrary import some_function
result = some_function()
reveal_type(result) # expect-type: int
Besides expressing type expectations, you can also specify to expect an error from the typechecker:
string: str = "not a number"
number: int = string # expect-error
You can also specify to expect a mismatch error, i.e. an error where an assigned type is mismatching the actual type:
string: str = "not a number"
number: int = string # expect-mismatch: int <> str
Suppported Typecheckers
mypy
pyright
Installation
typest
is available at pypi. You can install it through pip:
pip install typest
Use
python -m typest [PATH] [TYPECHECKERS]
If PATH is a directory, all python files under that directory (including subdirectories) are going to be checked. If PATH points to a file, it has to be a python file.
TYPECHECKERS is an optional argument, a comma separated list of names of
typecheckers you want to run your tests against. Currently, mypy
and pyright
are suppported.
Development
You can add more typecheckers by subclassing
typest.typecheckers.base.TypeChecker
and importing your new class in
typest/typecheckers/__init__.py
.
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
Built Distribution
File details
Details for the file typest-0.3.2.tar.gz
.
File metadata
- Download URL: typest-0.3.2.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.6 Linux/5.15.0-57-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4425170fdbd83f3fc0ab8cfccb0bf5fdf4a87240758d4d7c66dc5e0a14e02071 |
|
MD5 | a9ff9a5d61e52c8126ccfbd02b929bd9 |
|
BLAKE2b-256 | 6b2301619008786b90fd985fccdde42f44354bd0039c24cd47dc9300db30d554 |
File details
Details for the file typest-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: typest-0.3.2-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.6 Linux/5.15.0-57-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bf52b759c5a88c097244a3ecf57402ca65c6017ea1e775dfdfdf21bed0ef6db |
|
MD5 | a28e860c84949e8c23c33ee9ac30c674 |
|
BLAKE2b-256 | c119b369d3956859962b33c1327db67a506a5d140644b1603407c06d81fc2cee |