From 43fe6b5ad1133b7dd2739d6c40b782729b2bf7a5 Mon Sep 17 00:00:00 2001 From: Damjan Kuznar Date: Tue, 25 Jul 2023 08:15:52 +0200 Subject: [PATCH] fix nox call in GH workflow --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index e24752a..15ac54b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,5 +5,6 @@ @nox.session(python=["3.10", "3.11"]) @nox.parametrize("pydantic", ["1.9.1", "2.0.3"]) def tests(session: Session, pydantic): + session.install(".") session.install(f"pydantic=={pydantic}") session.run("pytest")