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