| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,25 +27,25 @@ jobs: | |||
| 27 | 27 | ||
| 28 | 28 | - name: Install dependencies | |
| 29 | 29 | 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 | ||
| 32 | 32 | ||
| 33 | 33 | - name: Build and Install | |
| 34 | 34 | run: | | |
| 35 | - pip install -v . | ||
| 35 | + pip3.8 install -v . | ||
| 36 | 36 | ||
| 37 | 37 | - name: Set Python DLL path (non Windows) | |
| 38 | 38 | run: | | |
| 39 | - echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV | ||
| 39 | + echo PYTHONNET_PYDLL=$(python3.8 -m find_libpython) >> $GITHUB_ENV | ||
| 40 | 40 | ||
| 41 | 41 | - name: Embedding tests | |
| 42 | 42 | run: dotnet test --logger "console;verbosity=detailed" src/embed_tests/ | |
| 43 | 43 | ||
| 44 | 44 | - name: Python Tests (Mono) | |
| 45 | - run: python -m pytest --runtime mono | ||
| 45 | + run: python3.8 -m pytest --runtime mono | ||
| 46 | 46 | ||
| 47 | 47 | - name: Python Tests (.NET Core) | |
| 48 | - run: python -m pytest --runtime coreclr | ||
| 48 | + run: python3.8 -m pytest --runtime coreclr | ||
| 49 | 49 | ||
| 50 | 50 | - name: Python tests run from .NET | |
| 51 | 51 | run: dotnet test src/python_tests_runner/ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments