Apple M1: Fix "Building and running unit tests" message
For {arch} to be converted, the string needs to be an f-string.
This commit is contained in:
parent
3fdc6cbffe
commit
9994363aa8
|
@ -337,7 +337,7 @@ def build(config):
|
|||
if not os.path.exists(arch):
|
||||
os.mkdir(arch)
|
||||
|
||||
print("Building and running unit tests for: {arch}")
|
||||
print(f"Building and running unit tests for: {arch}")
|
||||
unit_test_results[arch] = \
|
||||
subprocess.call(["cmake", "--build", ".",
|
||||
"--config", config["build_type"],
|
||||
|
|
Loading…
Reference in New Issue