Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Dec 4, 2024
1 parent fa70576 commit af742cb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit af742cb

Please sign in to comment.