8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cda604a commit 3982892Copy full SHA for 3982892
.github/workflows/main.yml
@@ -71,8 +71,16 @@ jobs:
71
python setup.py configure
72
pip install -v .
73
74
+ # TODO this should be gone once clr module sets PythonDLL or preloads it
75
- name: Python Tests
76
run: pytest
77
+ if: ${{ matrix.os != 'macos' }}
78
+ env:
79
+ PYTHONNET_PYDLL: ${{ matrix.DLL_PREFIX }}python${{matrix.DLL_PYVER_MAJOR}}${{matrix.PYVER_MINOR}}${{matrix.DLL_SUFFIX}}${{matrix.DLL_EXT}}
80
+
81
+ - name: Python Tests
82
+ run: pytest
83
+ if: ${{ matrix.os == 'macos' }}
84
85
- name: Embedding tests
86
run: dotnet test --runtime any-${{ matrix.platform }} src/embed_tests/
0 commit comments