pyo3/pytests/pyo3-pytests
2022-02-04 20:53:49 +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
build.rs opt: optimize argument extraction 2022-02-04 20:53:49 +00:00
Cargo.toml ci: add coverage for pytests 2022-01-22 20:06:57 +00:00
MANIFEST.in Organize examples + add __call__ example (#2043) 2021-12-15 00:45:26 +00:00
noxfile.py ci: add coverage for pytests 2022-01-22 20:06:57 +00:00
pyproject.toml ci: build all examples in debug 2022-01-23 08:41:39 +00:00
README.md Switch from tox to nox 2022-01-17 00:24:33 +08:00
requirements-dev.txt ci: add coverage for pytests 2022-01-22 20:06:57 +00:00

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