File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,25 +27,25 @@ jobs:
2727
2828 - name : Install dependencies
2929 run : |
30- pip install -r requirements.txt
31- pip install pytest numpy # for tests
30+ pip3.8 install -r requirements.txt
31+ pip3.8 install pytest numpy # for tests
3232
3333 - name : Build and Install
3434 run : |
35- pip install -v .
35+ pip3.8 install -v .
3636
3737 - name : Set Python DLL path (non Windows)
3838 run : |
39- echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV
39+ echo PYTHONNET_PYDLL=$(python3.8 -m find_libpython) >> $GITHUB_ENV
4040
4141 - name : Embedding tests
4242 run : dotnet test --logger "console;verbosity=detailed" src/embed_tests/
4343
4444 - name : Python Tests (Mono)
45- run : python -m pytest --runtime mono
45+ run : python3.8 -m pytest --runtime mono
4646
4747 - name : Python Tests (.NET Core)
48- run : python -m pytest --runtime coreclr
48+ run : python3.8 -m pytest --runtime coreclr
4949
5050 - name : Python tests run from .NET
5151 run : dotnet test src/python_tests_runner/
You can’t perform that action at this time.
0 commit comments