Skip to content

Commit 3118ebb

Browse files
committed
Use the fact that the venv should be active
1 parent e5feb0b commit 3118ebb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/
@@ -96,4 +96,4 @@ jobs:
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/

0 commit comments

Comments
 (0)