tantivy-py/noxfile.py

9 lines
218 B
Python
Raw Normal View History

2022-01-17 12:57:34 +00:00
import nox
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
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")