9 lines
210 B
Python
9 lines
210 B
Python
|
import nox
|
||
|
|
||
|
|
||
|
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
|
||
|
def test(session):
|
||
|
session.install("-rrequirements-dev.txt")
|
||
|
session.install("-e", ".", "--no-build-isolation")
|
||
|
session.run("pytest")
|