Skip to content

Commit

Permalink
progress 12
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 21, 2024
1 parent e1d09a9 commit c0245ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
cancel-in-progress: true
jobs:
py3:
name: "py-${{ matrix.python-version }}-${{ matrix.os }}"
name: "py-${{ matrix.python-version }}, ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
Expand All @@ -25,16 +25,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install pydeps ${{ matrix.os }}, py-${{ matrix.python-version }}
- name: Install pydeps
if: matrix.os == 'windows-latest'
run: |
python.exe -m pip install --upgrade mock ipaddress pypiwin32 wmi pyopenssl psutil pytest
- name: Install pydeps ${{ matrix.os }}, py-${{ matrix.python-version }}
python.exe -m pip install --upgrade pypiwin32 wmi pyopenssl psutil pytest
- name: Install pydeps
if: matrix.os != 'windows-latest'
run: |
make setup-dev-env
- name: Tests ${{ matrix.os }}, py-${{ matrix.python-version }}
- name: Tests
run: |
make test
Expand Down

0 comments on commit c0245ea

Please sign in to comment.