Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ tasks:
bazel: last_rc
ubuntu_workspace:
<<: *reusable_config
<<: *common_workspace_flags
name: "Default: Ubuntu, workspace"
platform: ubuntu2004
mac_workspace:
Expand All @@ -141,6 +142,7 @@ tasks:
platform: macos
windows_workspace:
<<: *reusable_config
<<: *common_workspace_flags
name: "Default: Windows, workspace"
platform: windows

Expand Down
5 changes: 3 additions & 2 deletions tests/integration/local_toolchains/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ def test_python_from_path_used(self):
[shell_path, "-c", "import sys; print(sys.executable)"],
text=True,
)
expected = expected.strip()
self.assertEqual(expected, sys.executable)
expected = expected.strip().lower()
# Normalize case: Windows may have case differences
self.assertEqual(expected.lower(), sys.executable.lower())


if __name__ == "__main__":
Expand Down