9 lines
173 B
Python
9 lines
173 B
Python
import nox
|
|
|
|
|
|
@nox.session
|
|
def python(session: nox.Session):
|
|
session.env["MATURIN_PEP517_ARGS"] = "--profile=dev"
|
|
session.install(".[dev]")
|
|
session.run("pytest")
|