Skip to content

Commit

Permalink
more poor man debugging github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ruaronicola committed Sep 27, 2023
1 parent c958288 commit fb665eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/yices_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ def loadYices():
global libyicespath
error_msg = "Yices dynamic library not found."
# attempt loading yices from both $PATH and default install location
print(f'{os.environ("PATH")=}')
print(f'{os.environ("PYTHONPATH")=}')
print(f'{os.environ("VIRTUAL_ENV")=}')
print(f'{os.environ.get("PATH")=}')
print(f'{os.environ.get("PYTHONPATH")=}')
print(f'{os.environ.get("VIRTUAL_ENV")=}')
for path in sys.path + ['/usr/local/lib']:
if _loadYicesFromPath(path, libyicespath):
return
Expand Down

0 comments on commit fb665eb

Please sign in to comment.