Skip to content

Commit 9429a19

Browse files
committed
investigating CI issue
1 parent 0c12a51 commit 9429a19

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

python/py-mofka-client.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ using namespace pybind11::literals;
1717
PYBIND11_MODULE(pymofka_client, m) {
1818
m.doc() = "Python binding for the MofkaDriver class";
1919

20-
py::object DriverInterface = (py::object) py::module_::import("pydiaspora_stream_api").attr("Driver");
20+
auto pydiaspora_stream_api = py::module_::import("pydiaspora_stream_api");
21+
std::cerr << "YYYYYYYY " << pydiaspora_stream_api << std::endl;
22+
py::object DriverInterface = (py::object)pydiaspora_stream_api.attr("Driver");
23+
std::cerr << "XXXXXXXX " << DriverInterface << std::endl;
2124

2225
py::class_<mofka::MofkaDriver,
2326
std::shared_ptr<mofka::MofkaDriver>>(m, "MofkaDriver", DriverInterface)

tests/run-benchmark.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ $HERE/pre-test.sh
66

77
echo "{\"group_file\":\"mofka.json\", \"margo\":{\"use_progress_thread\":true}}" > benchmark_config.json
88

9+
echo "PYTHONPATH=$PYTHONPATH"
10+
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
11+
912
echo "==> Creating topic"
1013
python -m mochi.mofka.mofkactl topic create my_topic -g mofka.json
1114
r="$?"

0 commit comments

Comments
 (0)