Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
Empty file added test/unit/caching/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions test/unit/caching/caching_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import subprocess
import sys


MODULE_BAZEL_TEMPLATE = """\
module(name = "caching_test_workspace")

Expand Down Expand Up @@ -149,6 +148,7 @@ def run_bazel(cmd: str, cwd: str) -> tuple[int, str, str]:
text=True,
cwd=cwd,
env=env,
check=False,
)
return result.returncode, result.stdout, result.stderr

Expand All @@ -168,7 +168,7 @@ def find_rules_codechecker_path() -> str:
)
if os.path.isfile(os.path.join(repo_root, "MODULE.bazel")):
return repo_root
print(f"FAILED: Cannot find rules_codechecker repo root")
print("FAILED: Cannot find rules_codechecker repo root")
print(f" script_real_path: {script_real_path}")
print(f" computed root: {repo_root}")
sys.exit(1)
Expand Down
Loading