tantivy-py/noxfile.py

9 lines
245 B
Python
Raw Normal View History

2022-01-17 12:57:34 +00:00
import nox
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
2022-01-17 12:57:34 +00:00
def test(session):
session.install("-rrequirements-dev.txt")
session.install("-e", ".", "--no-build-isolation")
session.run("pytest", *session.posargs)