Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SovereignCloudStack/standards
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 474a66865b8b6e094fcf8e9f5fd43a41152f325e
Choose a base ref
..
head repository: SovereignCloudStack/standards
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d927ef26f1ef539b092253c87cd831366ebe4577
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 Tests/scs-compliance-check.py
2 changes: 1 addition & 1 deletion Tests/scs-compliance-check.py
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ def run_check_tool(executable, args, env=None, cwd=None):
return 999999
if executable.startswith("file://"):
executable = executable[7:]
exe = [os.path.abspath(os.path.join(cwd or ".", executable[2:])), *shlex.split(args)]
exe = [os.path.abspath(os.path.join(cwd or ".", executable)), *shlex.split(args)]
return subprocess.run(
exe, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
encoding='UTF-8', check=False, env=env, cwd=cwd,