19 lines
316 B
Markdown
19 lines
316 B
Markdown
# pyo3-benchmarks
|
|
|
|
This extension module contains benchmarks for pieces of PyO3's API accessible from Python.
|
|
|
|
## Running the benchmarks
|
|
|
|
You can install the module in your Python environment and then run the benchmarks with pytest:
|
|
|
|
```shell
|
|
python setup.py develop
|
|
pytest
|
|
```
|
|
|
|
Or with tox:
|
|
|
|
```shell
|
|
tox -e py
|
|
```
|