From 8a7dd41b73a99bd7a97b5bf7afbdf77df4deb5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Sverre=20Lien=20Sell=C3=A6g?= Date: Tue, 8 Sep 2020 15:30:12 +0200 Subject: [PATCH] initialize gtksourceviewmm since terminal uses that now and calls to terminal will cause an null value of the sourcebuffer --- tests/python_bindings/test_suite.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/python_bindings/test_suite.cc b/tests/python_bindings/test_suite.cc index e0c3ac9..d6bc08e 100644 --- a/tests/python_bindings/test_suite.cc +++ b/tests/python_bindings/test_suite.cc @@ -1,8 +1,10 @@ #include "test_suite.h" #include "python_module.h" +#include #include suite::suite(const boost::filesystem::path &path) : plugins(config) { + Gsv::init(); py::initialize_interpreter(); if(!Py_IsInitialized()) { throw std::runtime_error("Unable to initialize interpreter");