@@ -67,33 +67,33 @@ jobs:
67
67
-name :Set Python DLL path and PYTHONHOME (non Windows)
68
68
if :${{ matrix.os.category != 'windows' }}
69
69
run :|
70
- echo PYTHONNET_PYDLL=$(find_libpython) >> $GITHUB_ENV
70
+ echo PYTHONNET_PYDLL=$(uv run find_libpython) >> $GITHUB_ENV
71
71
72
72
-name :Set Python DLL path and PYTHONHOME (Windows)
73
73
if :${{ matrix.os.category == 'windows' }}
74
74
run :|
75
- Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(find_libpython)"
75
+ Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(uv run find_libpython)"
76
76
77
77
-name :Embedding tests
78
- run :dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
78
+ run :uv run dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
79
79
env :
80
80
MONO_THREADS_SUSPEND :preemptive # https://github.com/mono/mono/issues/21466
81
81
82
82
-name :Python Tests (Mono)
83
83
if :${{ matrix.os.category != 'windows' }}
84
- run :pytest --runtime mono
84
+ run :uv run pytest --runtime mono
85
85
86
86
# TODO: Run these tests on Windows x86
87
87
-name :Python Tests (.NET Core)
88
88
if :${{ matrix.os.platform == 'x64' }}
89
- run :pytest --runtime coreclr
89
+ run :uv run pytest --runtime coreclr
90
90
91
91
-name :Python Tests (.NET Framework)
92
92
if :${{ matrix.os.category == 'windows' }}
93
- run :pytest --runtime netfx
93
+ run :uv run pytest --runtime netfx
94
94
95
95
-name :Python tests run from .NET
96
- run :dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
96
+ run :uv run dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
97
97
98
98
-name :Perf tests
99
99
if :${{ (matrix.python == '3.8') && (matrix.os.platform == 'x64') }}