Project

General

Profile

Bug #1401

Updated by Philippe Proulx 7 months 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>

Back