From af742cb23091d6ea30a9d677096de8ed712c857c Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Wed, 4 Dec 2024 21:15:53 +0000 Subject: [PATCH] debug --- noxfile.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/noxfile.py b/noxfile.py index f5b2d05..75d0118 100644 --- a/noxfile.py +++ b/noxfile.py @@ -171,6 +171,12 @@ def newrun(*args, **kwargs): examples = Path(os.path.dirname(__file__)).absolute() / "examples" with patch.object(nox.command, "run", newrun): + # debugging + session.run("python", "-c", "import sys; print(sys.executable)") + print(os.listdir(".nox/test-mingw/bin")) + print(session.bin_paths) + session.run("python", "-c", "import os; print(os.environ['PATH'])") + session.install(".") session.install("--no-build-isolation", str(examples / "hello-world"))