We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ab457f commit 96e454eCopy full SHA for 96e454e
examples/tools/google/bazeltoolchain/string_formatter/ci_test_example.py
@@ -1,3 +1,4 @@
1
+import os
2
import platform
3
import shutil
4
@@ -10,6 +11,9 @@
10
11
print(f"SKIPPED TEST BECAUSE BAZEL IS NOT INSTALLED IN {platform.system()} PLATFORM YET.")
12
exit(0)
13
14
+# Add bazel path
15
+os.environ["PATH"] += os.pathsep + '/usr/share/bazel-6.3.2/bin'
16
+
17
output = run("bazel --version")
18
19
try:
0 commit comments