pyo3/pytests/pyo3-pytests
David Hewitt ea6a44a58f add maturin to requirements-dev files 2022-01-17 08:19:54 +00:00
..
pyo3_pytests Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
src pyfunction: allow required positional after option 2022-01-11 00:44:41 +00:00
tests pyfunction: allow required positional after option 2022-01-11 00:44:41 +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 Switch from tox to nox 2022-01-17 00:24:33 +08:00
build.rs Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
noxfile.py Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
pyproject.toml Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
requirements-dev.txt add maturin to requirements-dev files 2022-01-17 08:19:54 +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 nox and run the tests inside an isolated environment:

nox