pyo3/pytests/pyo3-benchmarks/noxfile.py

9 lines
199 B
Python

import nox
@nox.session
def python(session):
session.install("-rrequirements-dev.txt")
session.install("-e", ".", "--no-build-isolation")
session.run("pytest", "--benchmark-sort=name")