Bug #1401
Updated by Philippe Proulx about 1 year ago
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@ `if ENABLE_PYTHON_PLUGINS` in @Makefile.am@. `Makefile.am`. To reproduce: <pre> $ ./configure --enable-python-bindings $ make $ make -C tests check-bindings </pre>