We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad8d345 + 5470a0f commit 281393fCopy full SHA for 281393f
.github/workflows/test.sh
@@ -6,6 +6,11 @@ eval "$(conda shell.bash hook)"
6
BINDING=$(echo "$1" | tr '[:lower:]' '[:upper:]')
7
QT_VERSION_VAR=${BINDING}_QT_VERSION
8
9
+# pytest-qt >=4.5.0 doesn't support PySide2
10
+if [ "${1}" = "pyside2" ]; then
11
+ PYTESTQT_VERSION="<4.5.0"
12
+fi
13
+
14
# pytest-qt >=4 doesn't support Qt <=5.9
15
if [ "${!QT_VERSION_VAR:0:3}" = "5.9" ]; then
16
PYTESTQT_VERSION="=3.3.0"
0 commit comments