diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-11-22 17:05:34 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-11-22 17:05:34 +0100 |
commit | f46ad64b2ab8bf2a1cb006b8a368d2d18827d26f (patch) | |
tree | 780ced23ece7d96df52b102f07c9161456996605 /dev-python/pytest-qt | |
parent | dev-python/QtPy: Refactor/streamline running tests (diff) | |
download | gentoo-f46ad64b2ab8bf2a1cb006b8a368d2d18827d26f.tar.gz gentoo-f46ad64b2ab8bf2a1cb006b8a368d2d18827d26f.tar.bz2 gentoo-f46ad64b2ab8bf2a1cb006b8a368d2d18827d26f.zip |
dev-python/pytest-qt: Run tests for available impls only
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pytest-qt')
-rw-r--r-- | dev-python/pytest-qt/pytest-qt-4.2.0.ebuild | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/dev-python/pytest-qt/pytest-qt-4.2.0.ebuild b/dev-python/pytest-qt/pytest-qt-4.2.0.ebuild index 6c843c8a73e3..69e99e252e64 100644 --- a/dev-python/pytest-qt/pytest-qt-4.2.0.ebuild +++ b/dev-python/pytest-qt/pytest-qt-4.2.0.ebuild @@ -25,13 +25,13 @@ RDEPEND=" " BDEPEND=" test? ( - dev-python/PyQt5[gui,testlib,widgets,${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - dev-python/pyside2[gui,testlib,widgets,${PYTHON_USEDEP}] - ' "${PYSIDE2_COMPAT[@]}") - amd64? ( + || ( dev-python/PyQt6[gui,testlib,widgets,${PYTHON_USEDEP}] + dev-python/PyQt5[gui,testlib,widgets,${PYTHON_USEDEP}] dev-python/pyside6[gui,testlib,widgets,${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pyside2[gui,testlib,widgets,${PYTHON_USEDEP}] + ' "${PYSIDE2_COMPAT[@]}") ) ) " @@ -53,25 +53,23 @@ python_test() { # to be possible inside Xvfb "tests/test_basics.py::test_wait_window[waitActive-True]" + # TODO + tests/test_exceptions.py::test_exceptions_dont_leak + # we are forcing a specific module via envvar, effectively # overriding the config tests/test_basics.py::test_qt_api_ini_config tests/test_basics.py::test_qt_api_ini_config_with_envvar ) - einfo "Testing with PyQt5" - PYTEST_QT_API="pyqt5" epytest || die - if use amd64; then - einfo "Testing with PyQt6" - PYTEST_QT_API="pyqt6" epytest || die - fi - # Pyside{2,6} is not compatible with python3.12 - if has "${EPYTHON}" "${PYSIDE2_COMPAT[@]/_/.}"; then - einfo "Testing with PySide2" - PYTEST_QT_API="pyside2" epytest || die - fi - if use amd64 && has "${EPYTHON}" "${PYSIDE6_COMPAT[@]/_/.}"; then - einfo "Testing with PySide6" - PYTEST_QT_API="pyside6" epytest || die - fi + local -x PYTEST_QT_API + for PYTEST_QT_API in PyQt{5,6} pyside{2,6}; do + if has_version "dev-python/${PYTEST_QT_API}[gui,testlib,widgets,${PYTHON_USEDEP}]" + then + einfo "Testing with ${EPYTHON} and ${PYTEST_QT_API}" + nonfatal epytest || + die -n "Tests failed with ${EPYTHON} and ${PYTEST_QT_API}" || + return 1 + fi + done } |