pyo3/pytests/noxfile.py

23 lines
640 B
Python
Raw Normal View History

2022-01-16 16:12:40 +00:00
import nox
from nox.command import CommandFailed
2022-01-16 16:12:40 +00:00
2022-01-22 23:15:36 +00:00
nox.options.sessions = ["test"]
@nox.session
def test(session: nox.Session):
2023-12-05 05:01:02 +00:00
session.env["MATURIN_PEP517_ARGS"] = "--profile=dev"
session.run_always("python", "-m", "pip", "install", "-v", ".[dev]")
try:
session.install("--only-binary=numpy", "numpy>=1.16")
except CommandFailed:
# No binary wheel for numpy available on this platform
pass
session.run("pytest", *session.posargs)
2022-01-22 23:15:36 +00:00
2022-01-16 16:12:40 +00:00
@nox.session
def bench(session: nox.Session):
2023-12-04 19:03:56 +00:00
session.install(".[dev]")
session.run("pytest", "--benchmark-enable", "--benchmark-only", *session.posargs)