We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cdf2ae commit 4d50553Copy full SHA for 4d50553
.github/workflows/main.yml
@@ -74,11 +74,14 @@ jobs:
74
if: ${{ matrix.os.category != 'windows' }}
75
run: |
76
echo PYTHONNET_PYDLL=$(find_libpython) >> $GITHUB_ENV
77
+ echo PYTHONHOME=.venv >> $GITHUB_ENV
78
79
- name: Set Python DLL path and PYTHONHOME (Windows)
80
if: ${{ matrix.os.category == 'windows' }}
81
82
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(find_libpython)"
83
+ Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONHOME=.venv"
84
+
85
86
# - name: Embedding tests
87
# run: dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
0 commit comments