Skip to content

Commit

Permalink
[CI] more arm fun
Browse files Browse the repository at this point in the history
  • Loading branch information
hakril committed Jan 16, 2025
1 parent 6e8ee7a commit 2b3bfab
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,20 @@ jobs:
- python-bitness-to-test: arm64
python-architecture: arm64

env:
pyver_str: -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}}

steps:
- uses: actions/checkout@v4

- name: Listing python versions availables
run: py -0

- name: Printing version
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -VV
run: py ${{pyver_str}} -VV

- name: Testing PFW execute
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"

- name: Testing PFW execute
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pytest tests -k test_print_syswow_state -v -x -s

0 comments on commit 2b3bfab

Please sign in to comment.