Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed May 15, 2024
1 parent f7d2242 commit 1714cce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ def test_cmake_compilation(sbml_example_presimulation_module):
amici_dir = (Path(__file__).parents[2] / "build").absolute()
cmd = (
f"set -e; "
f"cmake -S {source_dir} -B '{build_dir}' -DAmici_DIR={amici_dir}; "
f"cmake --build '{build_dir}'"
f"cmake -S {source_dir} -B '{build_dir}' "
f"-DCMAKE_BUILD_TYPE=Debug -DAmici_DIR={amici_dir}; "
f"cmake --build '{build_dir}' --config Debug"
)

try:
Expand Down

0 comments on commit 1714cce

Please sign in to comment.