We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa700a commit 04493d6Copy full SHA for 04493d6
1 file changed
tests/test_libraries.py
@@ -2321,7 +2321,16 @@ def test_schwifty(pyi_builder):
2321
def test_eccodes_gribapi(pyi_builder):
2322
@isolated.decorate
2323
def _get_library_path():
2324
+ import logging
2325
+ logging.basicConfig(level=loggin.DEBUG)
2326
+
2327
import os
2328
+ os.environ['ECCODES_PYTHON_TRACE_LIB_SEARCH'] = '1'
2329
2330
+ import findlibs
2331
+ findlibs.logger.setLevel(logging.DEBUG)
2332
+ findlibs.logger.addHandler(logging.StreamHandler())
2333
2334
import eccodes
2335
import gribapi
2336
import gribapi.bindings
0 commit comments