From 3c99a401bb2da8ec84faba2c27766c7b081b00e5 Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 11 May 2024 13:11:58 -0500 Subject: [PATCH] add to nox call --- noxfile.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/noxfile.py b/noxfile.py index 3804f34..0cced94 100644 --- a/noxfile.py +++ b/noxfile.py @@ -71,6 +71,12 @@ def tests(session, django): else: session.install(f"django=={django}") + import shutil + import subprocess + + subprocess.check_call(["op", "--version"]) + shutil.which("op") + if session.posargs: session.run("python", "-m", "pytest", *session.posargs) else: