pyo3/pytests
David Hewitt f12f928bd5
Merge pull request #3514 from messense/memoryview
Add `PyMemoryView` type
2023-10-15 15:08:50 +00:00
..
pyo3_pytests pytests: merge benchmark and test crates 2022-02-05 10:16:46 +00:00
src Add test cases for new `TryFrom` impls 2023-10-15 21:53:31 +08:00
tests Add `PyMemoryView` type 2023-10-15 17:32:09 +08:00
Cargo.toml Bump Rust edition to 2021 and make current Clippy happy. 2023-06-07 21:15:38 +02:00
MANIFEST.in pytests: merge benchmark and test crates 2022-02-05 10:16:46 +00:00
README.md pytests: merge benchmark and test crates 2022-02-05 10:16:46 +00:00
build.rs pytests: merge benchmark and test crates 2022-02-05 10:16:46 +00:00
noxfile.py ci: avoid failure to build numpy on 3.12 2023-07-22 21:38:57 +01:00
pyproject.toml bump maturin version in example files 2023-06-14 08:45:32 +01:00
requirements-dev.txt ci: drop psutil dependency 2023-10-15 14:15:38 +01:00

README.md

pyo3-pytests

An extension module built using PyO3, used to test and benchmark 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

Running benchmarks

You can install the module in your Python environment and then run the benchmarks with pytest:

pip install .
pytest --benchmark-enable

Or with nox:

nox -s bench