Skip to content

Commit

Permalink
Merge pull request #6307 from nilsvu/fix_tests
Browse files Browse the repository at this point in the history
Fix two Python tests
  • Loading branch information
kidder authored Sep 28, 2024
2 parents f622b2d + a49fb64 commit 6ab4e46
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions tests/support/Pipelines/Bbh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ spectre_add_python_bindings_test(
None
TIMEOUT 60)

spectre_add_python_bindings_test(
"support.Pipelines.Bbh.PostprocessId"
Test_PostprocessId.py
"Python"
None
TIMEOUT 60)

spectre_add_python_bindings_test(
"support.Pipelines.Bbh.Ringdown"
Test_Ringdown.py
Expand Down
2 changes: 1 addition & 1 deletion tests/support/Pipelines/Bbh/Test_PostprocessId.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from spectre.Informer import unit_test_build_path
from spectre.Pipelines.Bbh.InitialData import generate_id
from spectre.Pipelines.Bbh.PostprocessId import postprocess_id_command
from support.Python.Logging import configure_logging
from spectre.support.Logging import configure_logging


class TestPostprocessId(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from spectre.Pipelines.EccentricityControl.InitialOrbitalParameters import (
initial_orbital_parameters,
)
from support.Python.Logging import configure_logging
from spectre.support.Logging import configure_logging


class TestInitialOrbitalParameters(unittest.TestCase):
Expand Down

0 comments on commit 6ab4e46

Please sign in to comment.