We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4218ff commit 3925aedCopy full SHA for 3925aed
python/eigenpy/windows_dll_manager.py
@@ -11,9 +11,12 @@ def get_dll_paths():
11
RELATIVE_DLL_PATH1 = "..\\..\\..\\..\\bin"
12
# lib/site-packages/package
13
RELATIVE_DLL_PATH2 = "..\\..\\..\\bin"
14
+ # For unit test
15
+ RELATIVE_DLL_PATH3 = "..\\..\\bin"
16
return [
17
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH1),
18
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH2),
19
+ os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH3),
20
]
21
else:
22
return eigenpy_paths.split(os.pathsep)
0 commit comments