File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,12 @@ jobs:
7070 - name : Set Python DLL path and PYTHONHOME (non Windows)
7171 if : ${{ matrix.os.category != 'windows' }}
7272 run : |
73- echo PYTHONNET_PYDLL=$(uv run find_libpython) >> $GITHUB_ENV
73+ echo PYTHONNET_PYDLL=$(find_libpython) >> $GITHUB_ENV
7474
7575 - name : Set Python DLL path and PYTHONHOME (Windows)
7676 if : ${{ matrix.os.category == 'windows' }}
7777 run : |
78- Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(uv run find_libpython)"
78+ Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(find_libpython)"
7979
8080 - name : Embedding tests
8181 run : dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
9696 run : pytest --runtime netfx
9797
9898 - name : Python tests run from .NET
99- run : uv run dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
99+ run : dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
You can’t perform that action at this time.
0 commit comments