diff --git a/lib/python_binding/test/src/external_tool.cpp b/lib/python_binding/test/src/external_tool.cpp index 55c482a57..2004a5ffd 100644 --- a/lib/python_binding/test/src/external_tool.cpp +++ b/lib/python_binding/test/src/external_tool.cpp @@ -19,7 +19,6 @@ std::string src_info( const std::source_location location = std::source_location TEST_CASE( "VTX_PYTHON_BINDING - External tool test", "[integration]" ) { using namespace VTX; - return; App::Test::Util::PythonFixture f; diff --git a/lib/python_binding/test/src/python_binding.cpp b/lib/python_binding/test/src/python_binding.cpp index b3a9ed8cb..0c75286d2 100644 --- a/lib/python_binding/test/src/python_binding.cpp +++ b/lib/python_binding/test/src/python_binding.cpp @@ -29,7 +29,6 @@ void runScript( const std::string & p_scriptName, const VTX::PythonBinding::Inte TEST_CASE( "VTX_PYTHON_BINDING - Interpretor test", "[integration][interpretor]" ) { using namespace VTX; - return; App::Test::Util::PythonFixture f; diff --git a/lib/python_binding/test/src/util/app.cpp b/lib/python_binding/test/src/util/app.cpp index 82038f130..21abb8500 100644 --- a/lib/python_binding/test/src/util/app.cpp +++ b/lib/python_binding/test/src/util/app.cpp @@ -22,12 +22,11 @@ namespace VTX::App::Test::Util SCENE().reset(); } - PythonFixture::~PythonFixture() { resetInterpretor(); } + PythonFixture::~PythonFixture() { INTERPRETOR().clearBinders(); } void PythonFixture::resetInterpretor() { INTERPRETOR().clearBinders(); INTERPRETOR().addBinder(); - return; } void PythonFixture::loadSystem( const std::string & p_moleculePath ) diff --git a/lib/python_binding/test/src/vtx_api.cpp b/lib/python_binding/test/src/vtx_api.cpp index f8e04252b..f222a0a12 100644 --- a/lib/python_binding/test/src/vtx_api.cpp +++ b/lib/python_binding/test/src/vtx_api.cpp @@ -15,7 +15,6 @@ TEST_CASE( "VTX_PYTHON_BINDING - VTX API Tests", "[integration]" ) { using namespace VTX; - return; App::Test::Util::PythonFixture f; PythonBinding::Interpretor & interpretor = INTERPRETOR();