Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions onnxruntime/test/python/onnxruntime_test_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ def test_session_options_add_external_initializers(self):

def test_register_custom_ops_library(self):
if sys.platform.startswith("win"):
shared_library = "custom_op_library.dll"
shared_library = os.path.abspath("custom_op_library.dll")
if not os.path.exists(shared_library):
raise FileNotFoundError(f"Unable to find '{shared_library}'")

Expand Down Expand Up @@ -1724,7 +1724,7 @@ def test_register_custom_e_ps_library(self):
return

if sys.platform.startswith("win"):
shared_library = "test_execution_provider.dll"
shared_library = os.path.abspath("test_execution_provider.dll")

elif sys.platform.startswith("darwin"):
# exclude for macos
Expand Down
Loading