habitmove/noxfile.py
Marty Oehme 2c5bfb97b4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fix build pipeline issues
Ignored the typeless library imports nox and metadata_version since they
are for development testing and too old of a python version
respectively.

Fixed two small typing errors for repetitions.
2022-01-18 19:21:13 +01:00

9 lines
226 B
Python

import nox # type: ignore
@nox.session(python=["3.7", "3.8", "3.9"])
def tests(session):
args = session.posargs or ["--cov"]
session.run("poetry", "install", external=True)
session.run("pytest", *args)
pass