We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33ce0b8 commit 0021fd4Copy full SHA for 0021fd4
1 file changed
tests/integration/examples/test_conan_cmake.py
@@ -57,7 +57,9 @@ def _run_cmake_configure(cmake_binary: str) -> None:
57
Args:
58
cmake_binary: Path or command name for the CMake binary to use
59
"""
60
- result = subprocess.run([cmake_binary, f'--preset={_cmake_preset}'], capture_output=True, text=True, check=False)
+ result = subprocess.run(
61
+ [cmake_binary, f'--preset={_cmake_preset}'], capture_output=True, text=True, check=False
62
+ )
63
assert result.returncode == 0, f'CMake configuration failed: {result.stderr}'
64
65
@staticmethod
0 commit comments