pyo3/pytests/pyo3-pytests
David Hewitt ff37f24625 macros: accept paths in wrap_x macros 2021-12-30 12:46:57 +00:00
..
pyo3_pytests Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
src macros: accept paths in wrap_x macros 2021-12-30 12:46:57 +00:00
tests Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
Cargo.toml Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
MANIFEST.in Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
README.md Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
build.rs Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
pyproject.toml Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
requirements-dev.txt Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
tox.ini Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00

README.md

pyo3-pytests

An extension module built using PyO3, used to test PyO3 from Python.

Testing

This package is intended to be built using maturin. Once built, you can run the tests using pytest:

pip install maturin
maturin develop
pytest

Alternatively, install tox and run the tests inside an isolated environment:

tox -e py