type-assert
pytest plugin that checks a value's static type and its runtime type in one assertion.
A type checker only ever sees the annotations. A runtime checker only ever sees the
values. Either can be right while the other is wrong, and overloaded signatures are
where they drift apart. type-assert pins both halves at once, from one line:
assert_types(json.loads('[1]'), Any)
assert_types(sorted({'b', 'a'}), list[str])
Each line becomes two tests. One runs the expression and checks the value it produced. The other checks what a type checker inferred for the same line. The line only passes if the two agree.
Warning — The API of this package is unstable and likely to change between minor versions (for example
0.1.0to0.2.0). Pin the exact version you depend on, for exampletype-assert==0.1.0.
Installation
pip install type-assert[mypy] # or [pyright], [pyrefly], or [all]
The checker itself is an extra, because it should be whichever one your project already uses.
Usage
Put a directory of case files somewhere in your test tree and point the plugin at it:
[tool.pytest.ini_options]
type_assert_cases = 'tests/typing/cases'
A case file is an ordinary Python module. Every top-level assert_types call is a case;
everything else — imports, helpers, constants — is setup shared by the cases in that
file:
from __future__ import annotations
import json
from typing import Any
from type_assert import assert_types
def payload() -> str:
"""Return a document to parse."""
return '{"a": 1}'
assert_types(json.loads(payload()), Any)
assert_types(sorted({'b', 'a'}), list[str])
assert_types(''.join([]), str)
Running pytest collects each case file as a test file of its own:
tests/typing/cases/basics.py::setup
tests/typing/cases/basics.py::sorted({'b', 'a'}) -> list[str] [runtime]
tests/typing/cases/basics.py::sorted({'b', 'a'}) -> list[str] [static]
How assert_types does both
To a type checker, assert_types is
typing_extensions.assert_type,
aliased under TYPE_CHECKING. Checkers resolve an aliased import back to its original
definition, so the special case still applies: the inferred type must match the second
argument exactly, and a supertype is a failure rather than a pass.
At runtime that name is bound to a real checker instead, backed by
pycroscope, which walks containers exhaustively —
it catches a None at any position in a list[int], not only the first element.
Writing the type once covers both halves, and there is no way for them to drift apart.
What each half checks
The checker's assert_type is exact: the inferred type must be the expected type, so
object fails for an int and list[float] fails for a list[int]. The runtime
check is assignability, the relation the type system itself uses for a value: an
instance of a subclass passes for its base class, and every element of a container is
held to the same rule.
Two things are read more strictly than the type system would, because they are where a declared type and a produced value drift apart in practice:
- A number has to be an instance of the numeric class named. An
intdoes not pass forfloat, abooldoes not pass forint, and[1, 2]does not pass forlist[float]. A function that really returns either should sayfloat | int. - A NumPy array is checked as the array type it actually is, dtype and number of
dimensions included, so a
float64array does not pass forNDArray[np.int64]and a 1-D array does not pass forndarray[tuple[int, int], ...].
Both apply at any depth inside lists, tuples, sets and dicts. What the runtime half
cannot check is a type argument the value does not carry: a Box[int] is only a Box
at runtime, and there the checker is the sole authority. A supertype still fails only
the static half, which is the intended division of labour: the checker guards what was
declared, the run guards what was produced, and a case passes only when the declaration
is exact and the value honours it.
Types that only a checker can spell
Some types have no runtime spelling: a name imported under TYPE_CHECKING, or a class
a checker treats as generic that cannot be subscripted at runtime, such as
np.dtype[np.generic[object]]. Write the type as a string, the way an annotation can be
quoted:
assert_types(dtype_of(array), 'np.dtype[np.generic[object]]')
The checker reads the string as the type it names and holds the case to it exactly. At runtime the string is evaluated in the case file's namespace. When that succeeds the value is checked against it as usual, so a wrong quoted type still fails both halves. When the type cannot be built, the runtime half is skipped with the reason, since there is nothing to check the value against.
To keep a runtime check as well, name the type under TYPE_CHECKING and give it a
runtime stand-in:
if TYPE_CHECKING:
DType = np.dtype[np.generic[object]]
else:
DType = np.dtype
assert_types(dtype_of(array), DType)
The checker still sees the exact type; the value is checked against the stand-in.
Choosing a checker
[tool.pytest.ini_options]
type_assert_checkers = 'mypy' # the default
type_assert_checkers = 'pyright'
type_assert_checkers = 'mypy pyright pyrefly' # each with its own test
Naming more than one gives every case a static test per checker, so a case has to hold under all of them:
cases/basics.py::sorted({'b', 'a'}) -> list[str] [runtime]
cases/basics.py::sorted({'b', 'a'}) -> list[str] [static: mypy]
cases/basics.py::sorted({'b', 'a'}) -> list[str] [static: pyright]
The runtime test is not repeated, since the value does not depend on who checked it. Bear in mind that two checkers do not always infer the same type for the same expression, so a case that satisfies one may need rewording to satisfy both.
ty is deliberately not supported yet: it is pre-1.0 and its output format is still
moving. Adding a backend is a single module — see type_assert/_checkers/.
Skipping a case at runtime
A case that cannot run everywhere — it crashes on a platform, or needs something that is
not always installed — is named in a SKIP_RUNTIME mapping in its own file:
SKIP_RUNTIME = {
'expression exactly as written': 'why running it fails here',
}
Only the runtime half is skipped; the checker still checks the case. The mapping is read
after the file's setup has run, so making an entry conditional is ordinary Python. An
entry naming an expression that no case makes fails the file's setup test, so a skip
cannot quietly outlive the case it was written for.
Running the cases on their own
Case files collect like any other test file, so a job can run just them:
pytest tests/typing/cases --no-cov
pytest-cov's --no-cov matters when the project sets a coverage threshold in
addopts: the cases exercise only what they call, so --cov-fail-under would fail a
run that is only about types. Runs of the whole suite are unaffected.
License
MIT
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 type_assert-0.2.0.tar.gz.
File metadata
- Download URL: type_assert-0.2.0.tar.gz
- Upload date:
- Size: 35.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00c7a29ed9914fcffc76c8b4bd936947a20629991298d5e8c38b19f649474ecf
|
|
| MD5 |
e18c5e3427dd1307997e39b4573827ea
|
|
| BLAKE2b-256 |
6c8f2abe5310c15e367ecba4ce5d7c2128423c03e8f5e8644813a0be4394052f
|
Provenance
The following attestation bundles were made for type_assert-0.2.0.tar.gz:
Publisher:
ci.yml on user27182/type-assert
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
type_assert-0.2.0.tar.gz -
Subject digest:
00c7a29ed9914fcffc76c8b4bd936947a20629991298d5e8c38b19f649474ecf - Sigstore transparency entry: 2720044008
- Sigstore integration time:
-
Permalink:
user27182/type-assert@d0866227dda697e3746b9f598708149b1e630bc0 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/user27182
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@d0866227dda697e3746b9f598708149b1e630bc0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file type_assert-0.2.0-py3-none-any.whl.
File metadata
- Download URL: type_assert-0.2.0-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5cd017f6dd9678b5f094281003271277572817eb0c1e3b2d5b9f4c764ecafa3
|
|
| MD5 |
c163add9fc2eaafb029183d62f169950
|
|
| BLAKE2b-256 |
2b30fa7c29a41f2d9602b1f9f8c0ebeb96ee88199aa594e4ede81a9a9c1136fc
|
Provenance
The following attestation bundles were made for type_assert-0.2.0-py3-none-any.whl:
Publisher:
ci.yml on user27182/type-assert
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
type_assert-0.2.0-py3-none-any.whl -
Subject digest:
b5cd017f6dd9678b5f094281003271277572817eb0c1e3b2d5b9f4c764ecafa3 - Sigstore transparency entry: 2720044207
- Sigstore integration time:
-
Permalink:
user27182/type-assert@d0866227dda697e3746b9f598708149b1e630bc0 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/user27182
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@d0866227dda697e3746b9f598708149b1e630bc0 -
Trigger Event:
push
-
Statement type: