10 lines
229 B
Python
10 lines
229 B
Python
|
import nox
|
||
|
|
||
|
|
||
|
@nox.session
|
||
|
def python(session):
|
||
|
session.install("-rrequirements-dev.txt")
|
||
|
session.install("maturin")
|
||
|
session.run_always("maturin", "develop", "--features", "extension-module")
|
||
|
session.run("pytest")
|