pyo3/examples/setuptools-rust-starter/noxfile.py

11 lines
248 B
Python
Raw Normal View History

2022-01-16 16:12:40 +00:00
import nox
@nox.session
def python(session: nox.Session):
2022-01-16 16:12:40 +00:00
session.install("-rrequirements-dev.txt")
2022-01-22 23:15:36 +00:00
session.run_always(
"pip", "install", "-e", ".", "--no-build-isolation", env={"BUILD_DEBUG": "1"}
)
2022-01-16 16:12:40 +00:00
session.run("pytest")