Sync from SUSE:SLFO:Main python-pytest-qt revision 20ea77b12ac51dc015848f44064f27cb

This commit is contained in:
2024-12-13 12:11:28 +01:00
parent b3d53b083e
commit 6d0a3de606
4 changed files with 64 additions and 20 deletions

View File

@@ -1,3 +1,52 @@
-------------------------------------------------------------------
Wed May 29 10:45:04 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
- Run test_destroyed again, the problem was fixed in the
python3-pyside6 package.
-------------------------------------------------------------------
Tue May 28 06:16:27 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
- Skip test_destroyed, this test fails with pyside6 6.7.0
-------------------------------------------------------------------
Sat Mar 16 09:34:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 4.4.0:
* Fixed exception handling so they are properly cleared in
Python 3.12, due to the new sys.last_exc attribute (#532).
-------------------------------------------------------------------
Sun Jan 28 17:40:13 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Don't require any backend. The testing application should
specify their set explicitly.
- Test pyside on SLE15 python module
-------------------------------------------------------------------
Thu Jan 25 15:13:50 UTC 2024 - Ben Greiner <code@bnavigator.de>
- %sle15_python_module_pythons must define %pythons before any
%python_module usage
-------------------------------------------------------------------
Fri Jan 5 17:11:51 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 4.3.1:
* Added official support for Python 3.12.
* Python 3.7 is no longer supported.
* qapp now sets up the QApplication instance with a command
line argument like this QApplication([prog_name]) instead of
using an empty list QApplication([]). Here prog_name is the
name of the app which defaults to pytest-qt-app, but can be
redefined in the pytest.ini file, see :ref:`qapp
fixture<setting-qapp-name>`. Alternatively, the arguments
that will be passed to QApplication can be defined explicitly
using the qapp_args fixture. This means that the default
behavior of the qapp_args fixture is now also changed
accordingly: it now returns the list [prog_name] instead of
an empty list.
-------------------------------------------------------------------
Fri Jun 23 19:07:24 UTC 2023 - Ben Greiner <code@bnavigator.de>
@@ -159,8 +208,8 @@ Mon Jun 14 15:02:19 UTC 2021 - Ben Greiner <code@bnavigator.de>
* Errors related to the ``qt_compat`` module (such as an invalid
``PYTEST_QT_API`` setting or missing Qt API wrappers) are now shown as a more
human-readable error message rather than an internal pytest error (`#355`_). Thanks
`@The-Compiler`_ for the PR.
`@The-Compiler`_ for the PR.
-------------------------------------------------------------------
Fri Sep 25 09:19:58 UTC 2020 - Benjamin Greiner <code@bnavigator.de>