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

9 lines
150 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")
session.install("-e", ".")
session.run("pytest")