Actions
Bug #1401
closedTests fail with `--enable-python-bindings`, but without `--enable-python-plugins`
Start date:
10/29/2023
Due date:
% Done:
0%
Estimated time:
Description
I broke my brain trying to understand why some Python bindings tests were failing, only to realize they rely on Python plugins which the library won't find because I didn't build with --enable-python-plugins
(but with --enable-python-bindings
).
Such tests must only execute when Python plugin support is available, just like we use if ENABLE_PYTHON_PLUGINS
in Makefile.am
.
To reproduce:
$ ./configure --enable-python-bindings $ make $ make -C tests check-bindings
Actions