FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

ARM CI fix by lostmsu · Pull Request #2256 · pythonnet/pythonnet · GitHub

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .yml  (1) All 1 file type selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
12 changes: 6 additions & 6 deletions .github/workflows/ARM.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,25 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest numpy # for tests
pip3.8 install -r requirements.txt
pip3.8 install pytest numpy # for tests

- name: Build and Install
run: |
pip install -v .
pip3.8 install -v .

- name: Set Python DLL path (non Windows)
run: |
echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV
echo PYTHONNET_PYDLL=$(python3.8 -m find_libpython) >> $GITHUB_ENV

- name: Embedding tests
run: dotnet test --logger "console;verbosity=detailed" src/embed_tests/

- name: Python Tests (Mono)
run: python -m pytest --runtime mono
run: python3.8 -m pytest --runtime mono

- name: Python Tests (.NET Core)
run: python -m pytest --runtime coreclr
run: python3.8 -m pytest --runtime coreclr

- name: Python tests run from .NET
run: dotnet test src/python_tests_runner/
Expand Down

Back | FazBrowse Home | New Git URL