pyo3/pytests/noxfile.py

24 lines
616 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-04 19:03:56 +00:00
session.install(".[dev]")
try:
session.install("--only-binary=numpy", "numpy>=1.16")
except CommandFailed:
# No binary wheel for numpy available on this platform
pass
2022-01-22 23:15:36 +00:00
session.install("maturin")
session.run_always("maturin", "develop")
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)