We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db3447 commit 2737bf4Copy full SHA for 2737bf4
tests/integration/local_toolchains/test.py
@@ -19,8 +19,16 @@ def test_python_from_path_used(self):
19
text=True,
20
)
21
expected = expected.strip().lower()
22
+
23
+ msg = "\n".join([
24
+ "other values:",
25
+ f"{shell_path=}",
26
+ f"{sys.executable=}",
27
+ f"{sys._base_executable=}",
28
+ ])
29
# Normalize case: Windows may have case differences
- self.assertEqual(expected.lower(), sys.executable.lower())
30
+ self.assertEqual(expected.lower(), sys.executable.lower(),
31
+ msg = msg)
32
33
34
if __name__ == "__main__":
0 commit comments