Skip to content

Commit

Permalink
Merge pull request #21517 from ccordoba12/fix-tests
Browse files Browse the repository at this point in the history
PR: Install QDarkstyle 3.2.0 on Linux pip slots (CI)
  • Loading branch information
ccordoba12 authored Nov 12, 2023
2 parents da7b424 + b0cfa8d commit 27a8538
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ if [ "$USE_CONDA" = "true" ]; then
# Remove pylsp before installing its subrepo below
micromamba remove --force python-lsp-server python-lsp-server-base -y

# IPython 8.15 broke the %debug magic, which is used in some of our tests.
# So, pinning it to 8.14 for now.
micromamba install ipython=8.14

else
# Update pip and setuptools
python -m pip install -U pip setuptools wheel build
Expand All @@ -46,15 +42,14 @@ else
# To check our manifest
pip install -q check-manifest

# This allows the test suite to run more reliably on Linux
if [ "$OS" = "linux" ]; then
# This allows the test suite to run more reliably on Linux
pip uninstall pyqt5 pyqt5-qt5 pyqt5-sip pyqtwebengine pyqtwebengine-qt5 -q -y
pip install pyqt5==5.12.* pyqtwebengine==5.12.*
fi

# IPython 8.15 broke the %debug magic, which is used in some of our tests.
# So, pinning it to 8.14 for now.
pip install ipython==8.14.0
# QDarkstyle 3.2.1 doesn't work with PyQt 5.12
pip install qdarkstyle==3.2
fi

fi

Expand Down

0 comments on commit 27a8538

Please sign in to comment.