2022-01-16 16:12:40 +00:00
|
|
|
import nox
|
|
|
|
|
|
|
|
|
|
|
|
@nox.session
|
2023-10-20 21:37:04 +00:00
|
|
|
def python(session: nox.Session):
|
2022-01-16 16:12:40 +00:00
|
|
|
session.install("-rrequirements-dev.txt")
|
2022-01-22 23:15:36 +00:00
|
|
|
session.run_always(
|
|
|
|
"pip", "install", "-e", ".", "--no-build-isolation", env={"BUILD_DEBUG": "1"}
|
|
|
|
)
|
2022-01-16 16:12:40 +00:00
|
|
|
session.run("pytest")
|