Skip to content

Commit 0021fd4

Browse files
committed
Update test_conan_cmake.py
1 parent 33ce0b8 commit 0021fd4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/integration/examples/test_conan_cmake.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ def _run_cmake_configure(cmake_binary: str) -> None:
5757
Args:
5858
cmake_binary: Path or command name for the CMake binary to use
5959
"""
60-
result = subprocess.run([cmake_binary, f'--preset={_cmake_preset}'], capture_output=True, text=True, check=False)
60+
result = subprocess.run(
61+
[cmake_binary, f'--preset={_cmake_preset}'], capture_output=True, text=True, check=False
62+
)
6163
assert result.returncode == 0, f'CMake configuration failed: {result.stderr}'
6264

6365
@staticmethod

0 commit comments

Comments
 (0)