An extension module built using PyO3, used to test and benchmark PyO3 from Python.
This package is intended to be built using maturin. Once built, you can run the tests using pytest:
pip install maturin
maturin develop
pytestAlternatively, install nox and run the tests inside an isolated environment:
noxYou can install the module in your Python environment and then run the benchmarks with pytest:
pip install .
pytest --benchmark-enableOr with nox:
nox -s bench