forked from pool/python-pytest-qt
Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 019fbf82a0 | |||
| 9657022bd9 | |||
| c21b40ec28 | |||
| e4991be1d0 | |||
| ba1340276f | |||
| c33a49dc1a | |||
| 95ef5fad5d | |||
| e753bc3cf0 | |||
| 6b8d5b3058 |
@@ -1,6 +1,4 @@
|
||||
<multibuild>
|
||||
<flavor>test-pyqt5</flavor>
|
||||
<flavor>test-pyqt6</flavor>
|
||||
<flavor>test-pyside2</flavor>
|
||||
<flavor>test-pyside6</flavor>
|
||||
</multibuild>
|
||||
|
||||
BIN
pytest-qt-4.4.0.tar.gz
LFS
BIN
pytest-qt-4.4.0.tar.gz
LFS
Binary file not shown.
3
pytest_qt-4.5.0.tar.gz
Normal file
3
pytest_qt-4.5.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51620e01c488f065d2036425cbc1cbcf8a6972295105fd285321eb47e66a319f
|
||||
size 128702
|
||||
@@ -1,3 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 30 09:17:30 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 4.5.0:
|
||||
* Added official support for Python 3.13.
|
||||
* Dropped support for EOL Python 3.8.
|
||||
* Dropped support for EOL PySide 2.
|
||||
* Type annotations are now provided. Note that because the Qt
|
||||
library used is defined at runtime, Qt classes are currently
|
||||
annotated as Any.
|
||||
* Fixed PySide6 exceptions / warnings about being unable to
|
||||
disconnect signals with qtbot.waitSignal (#552, #558).
|
||||
* Reduced the likelyhood of trouble when using
|
||||
qtbot.waitSignal(s) and qtbot.waitCallback where the
|
||||
signal/callback is emitted from a non-main thread. In theory,
|
||||
more problems remain and this isn't a proper fix yet. In
|
||||
practice, it seems impossible to provoke any problems in
|
||||
pytest-qt's testsuite.
|
||||
- remove fix-pyside6-test.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 5 10:11:48 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Drop tests for python3-pyside2 and python-qt5 as Standard Qt 5
|
||||
support officially ends after 26th of may 2025.
|
||||
(boo#1243916)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 27 09:22:15 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
- Add patch to fix a test that fails when building with the latest
|
||||
pyside6 instead of skipping it:
|
||||
* fix-pyside6-test.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 26 13:29:50 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Skip test_qtinfo failing test with latest python3-pyside6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 29 10:45:04 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pytest-qt
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -24,33 +24,12 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
%if "%{flavor}" == "test-pyqt5"
|
||||
%define psuffix -%{flavor}
|
||||
%define test_qtapi pyqt5
|
||||
%bcond_without test
|
||||
BuildRequires: %{python_module qt5}
|
||||
BuildConflicts: %{python_module PyQt6}
|
||||
BuildConflicts: %{python_module pyside2}
|
||||
BuildConflicts: %{python_module pyside6}
|
||||
%endif
|
||||
%if "%{flavor}" == "test-pyqt6"
|
||||
%define psuffix -%{flavor}
|
||||
%define test_qtapi pyqt6
|
||||
%bcond_without test
|
||||
BuildRequires: %{python_module PyQt6}
|
||||
BuildConflicts: %{python_module pyside2}
|
||||
BuildConflicts: %{python_module pyside6}
|
||||
BuildConflicts: %{python_module qt5}
|
||||
%endif
|
||||
%if "%{flavor}" == "test-pyside2"
|
||||
%define psuffix -%{flavor}
|
||||
%{!?sle15_python_module_pythons:%define pythons python3}
|
||||
%define test_qtapi pyside2
|
||||
%bcond_without test
|
||||
BuildRequires: %{python_module pyside2}
|
||||
BuildConflicts: %{python_module PyQt6}
|
||||
BuildConflicts: %{python_module pyside6}
|
||||
BuildConflicts: %{python_module qt5}
|
||||
%endif
|
||||
%if "%{flavor}" == "test-pyside6"
|
||||
%define psuffix -%{flavor}
|
||||
@@ -61,17 +40,15 @@ BuildConflicts: %{python_module qt5}
|
||||
%bcond_without test
|
||||
BuildRequires: %{python_module pyside6}
|
||||
BuildConflicts: %{python_module PyQt6}
|
||||
BuildConflicts: %{python_module pyside2}
|
||||
BuildConflicts: %{python_module qt5}
|
||||
%endif
|
||||
Name: python-pytest-qt%{psuffix}
|
||||
Version: 4.4.0
|
||||
Version: 4.5.0
|
||||
Release: 0
|
||||
Summary: Pytest support for PyQt and PySide applications
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/pytest-dev/pytest-qt
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-qt/pytest-qt-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-qt/pytest_qt-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools_scm}
|
||||
@@ -83,10 +60,9 @@ BuildRequires: python-rpm-macros >= 20210608
|
||||
# https://github.com/pytest-dev/pytest-qt/issues/317
|
||||
Requires: bitstream-vera-fonts
|
||||
Requires: python-pytest >= 3.0
|
||||
Requires: python-typing-extensions
|
||||
Suggests: python-PyQt6
|
||||
Suggests: python-pyside2
|
||||
Suggests: python-pyside6
|
||||
Suggests: python-qt5
|
||||
BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module pytest-qt = %{version}}
|
||||
@@ -103,7 +79,7 @@ creation as needed and provides methods to simulate user interaction,
|
||||
like key presses and mouse clicks.
|
||||
|
||||
%prep
|
||||
%setup -q -n pytest-qt-%{version}
|
||||
%autosetup -p1 -n pytest_qt-%{version}
|
||||
dos2unix LICENSE
|
||||
# https://github.com/pytest-dev/pytest-qt/pull/419#discussion_r1240198866
|
||||
sed -i /xfail_strict/d setup.cfg
|
||||
|
||||
Reference in New Issue
Block a user