We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent22d07dd commita9e757fCopy full SHA for a9e757f
.github/workflows/ARM.yml
@@ -27,25 +27,25 @@ jobs:
27
28
-name:Install dependencies
29
run:|
30
-pip install -r requirements.txt
31
-pip install pytest numpy # for tests
+pip3.8 install -r requirements.txt
+pip3.8 install pytest numpy # for tests
32
33
-name:Build and Install
34
35
-pip install -v .
+pip3.8 install -v .
36
37
-name:Set Python DLL path (non Windows)
38
39
- echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV
+ echo PYTHONNET_PYDLL=$(python3.8 -m find_libpython) >> $GITHUB_ENV
40
41
-name:Embedding tests
42
run:dotnet test --logger "console;verbosity=detailed" src/embed_tests/
43
44
-name:Python Tests (Mono)
45
-run:python -m pytest --runtime mono
+run:python3.8 -m pytest --runtime mono
46
47
-name:Python Tests (.NET Core)
48
-run:python -m pytest --runtime coreclr
+run:python3.8 -m pytest --runtime coreclr
49
50
-name:Python tests run from .NET
51
run:dotnet test src/python_tests_runner/