pyo3/pytests/pyo3-benchmarks/noxfile.py

9 lines
199 B
Python
Raw Normal View History

2022-01-16 16:12:40 +00:00
import nox
@nox.session
def python(session):
session.install("-rrequirements-dev.txt")
2022-01-17 02:02:03 +00:00
session.install("-e", ".", "--no-build-isolation")
2022-01-16 16:12:40 +00:00
session.run("pytest", "--benchmark-sort=name")