pyo3/examples/pyo3-pytests
David Hewitt da885f696d examples: use pip 21.3 2021-10-13 00:05:33 +01:00
..
pyo3_pytests examples: maturin and setuptools_rust examples 2021-04-03 11:59:41 +01:00
src pypy: fix FFI definition of Py_Buffer 2021-07-24 08:37:22 +01:00
tests pypy: fix FFI definition of Py_Buffer 2021-07-24 08:37:22 +01:00
Cargo.toml pyo3-pytests: don't set profile in Cargo.toml 2021-07-31 16:52:30 +01:00
MANIFEST.in examples: maturin and setuptools_rust examples 2021-04-03 11:59:41 +01:00
README.md examples: maturin and setuptools_rust examples 2021-04-03 11:59:41 +01:00
build.rs pyo3-build-config: new crate to re-use build.rs across crates 2021-05-20 09:03:33 +01:00
pyproject.toml examples: maturin and setuptools_rust examples 2021-04-03 11:59:41 +01:00
requirements-dev.txt examples: use pip 21.3 2021-10-13 00:05:33 +01:00
tox.ini examples: use pip 21.3 2021-10-13 00:05:33 +01: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