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 478023d commit abaa42fCopy full SHA for abaa42f
.github/workflows/main.yml
@@ -71,8 +71,18 @@ 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
86
87
- name: Embedding tests
88
run: dotnet test --runtime any-${{ matrix.platform }} src/embed_tests/
0 commit comments