From 21cbb24f22ae9c9111bebec117613d928727d24d Mon Sep 17 00:00:00 2001 From: Nigel Metheringham Date: Sat, 12 Feb 2022 21:22:01 +0000 Subject: [PATCH] tests: updated nox configuration --- noxfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 9862e6a..8502134 100644 --- a/noxfile.py +++ b/noxfile.py @@ -6,12 +6,14 @@ @nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"]) def tests(session): + session.install("poetry") session.run("poetry", "install", external=True) session.run("pytest") -@nox.session(python="3.8") +@nox.session(python="3.10") def safety(session): + session.install("poetry") with tempfile.NamedTemporaryFile() as requirements: session.run( "poetry",