Skip to content

Commit

Permalink
Merge pull request #6886 from radarhere/cygwin
Browse files Browse the repository at this point in the history
Only install python-pyqt6 package on 64-bit
  • Loading branch information
hugovk committed Jan 12, 2023
2 parents 0d9686e + a2edefb commit 0275444
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request, workflow_dispatch]
permissions:
contents: read

concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

Expand Down Expand Up @@ -49,7 +49,6 @@ jobs:
${{ matrix.package }}-python3-numpy \
${{ matrix.package }}-python3-olefile \
${{ matrix.package }}-python3-pip \
${{ matrix.package }}-python-pyqt6 \
${{ matrix.package }}-python3-setuptools \
${{ matrix.package }}-freetype \
${{ matrix.package }}-gcc \
Expand All @@ -63,6 +62,11 @@ jobs:
${{ matrix.package }}-openjpeg2 \
subversion
if [ ${{ matrix.package }} == "mingw-w64-x86_64" ]; then
pacman -S --noconfirm \
${{ matrix.package }}-python-pyqt6
fi
python3 -m pip install pyroma pytest pytest-cov pytest-timeout
pushd depends && ./install_extra_test_images.sh && popd
Expand Down

0 comments on commit 0275444

Please sign in to comment.