Skip to content

Commit

Permalink
don't require ninja on roundtrip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Nov 20, 2023
1 parent 2653399 commit 2c5135d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/code-examples/roundtrips.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,10 @@ def main() -> None:
build_type = "Debug"
if args.release:
build_type = "Release"
# TODO(andreas): We should pixi for the prepare so we can ensure we have build tooling ready
configure_args = [
"cmake",
"-G",
"Ninja",
"-B",
cpp_build_dir,
f"-DCMAKE_BUILD_TYPE={build_type}",
"-DCMAKE_COMPILE_WARNING_AS_ERROR=ON",
Expand Down
3 changes: 1 addition & 2 deletions tests/roundtrips.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,9 @@ def main() -> None:
build_type = "Debug"
if args.release:
build_type = "Release"
# TODO(andreas): We should pixi for the prepare so we can ensure we have build tooling ready
configure_args = [
"cmake",
"-G",
"Ninja",
"-B",
cpp_build_dir,
f"-DCMAKE_BUILD_TYPE={build_type}",
Expand Down

0 comments on commit 2c5135d

Please sign in to comment.