Compare commits
1 Commits
Author | SHA256 | Date | |
---|---|---|---|
eef192af2b |
BIN
pytest-timeout-2.1.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
pytest-timeout-2.1.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
pytest-timeout-2.3.1.tar.gz
(Stored with Git LFS)
BIN
pytest-timeout-2.3.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
@@ -1,26 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Sat Mar 16 13:01:47 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.3.1:
|
|
||||||
* Fixup some build errors, mostly README syntax which stopped
|
|
||||||
twine from uploading.
|
|
||||||
* Fix debugger detection for recent VSCode, this compiles pydevd
|
|
||||||
using cython which is now correctly detected.
|
|
||||||
* Switched to using Pytest's ``TerminalReporter`` instead
|
|
||||||
of writing directly to ``sys.{stdout,stderr}``.
|
|
||||||
* This change also switches all output from ``sys.stderr`` to
|
|
||||||
``sys.stdout``.
|
|
||||||
* Pytest 7.0.0 is now the minimum supported version.
|
|
||||||
* Add ``--session-timeout`` option and ``session_timeout`` setting.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Nov 7 20:11:16 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.2.0:
|
|
||||||
* Update _validate_func_only to return None so it can utilize the
|
|
||||||
environment
|
|
||||||
* Add --timeout-disable-debugger-detection flag
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 21 12:32:02 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Fri Apr 21 12:32:02 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
@@ -52,7 +29,7 @@ Thu Jan 6 01:39:29 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
|
|||||||
to avoid crash.
|
to avoid crash.
|
||||||
* Fix pycharm debugger detection so timeouts are not triggered during
|
* Fix pycharm debugger detection so timeouts are not triggered during
|
||||||
debugger usage.
|
debugger usage.
|
||||||
* Dropped support for Python 2, minimum pytest version upported is 5.0.0.
|
* Dropped support for Python 2, minimum pytest version upported is 5.0.0.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 5 14:37:31 UTC 2020 - Marketa Machova <mmachova@suse.com>
|
Thu Nov 5 14:37:31 UTC 2020 - Marketa Machova <mmachova@suse.com>
|
||||||
@@ -90,7 +67,7 @@ Wed Nov 21 14:20:15 UTC 2018 - Enno Gotthold <egotthold@suse.com>
|
|||||||
Wed Sep 19 09:59:42 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>
|
Wed Sep 19 09:59:42 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
- version update to 1.3.2
|
- version update to 1.3.2
|
||||||
* Fix deprecation warning on Python 3.6.
|
* Fix deprecation warning on Python 3.6.
|
||||||
* Fix pytest 3.7.3 compatibility.
|
* Fix pytest 3.7.3 compatibility.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pytest-timeout
|
# spec file for package python-pytest-timeout
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,20 +16,22 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python3-%{**}}
|
||||||
|
%define skip_python2 1
|
||||||
%bcond_with ringdisabled
|
%bcond_with ringdisabled
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pytest-timeout
|
Name: python-pytest-timeout
|
||||||
Version: 2.3.1
|
Version: 2.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Pytest plugin to abort hanging tests
|
Summary: Pytest plugin to abort hanging tests
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/pytest-dev/pytest-timeout/
|
URL: https://github.com/pytest-dev/pytest-timeout/
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-timeout/pytest-timeout-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/pytest-timeout/pytest-timeout-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module pytest >= 7.0.0}
|
BuildRequires: %{python_module pytest >= 5.0.0}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-pytest >= 7.0.0
|
Requires: python-pytest >= 5.0.0
|
||||||
# SECTION test
|
# SECTION test
|
||||||
%if !%{with ringdisabled}
|
%if !%{with ringdisabled}
|
||||||
BuildRequires: %{python_module pytest-cov}
|
BuildRequires: %{python_module pytest-cov}
|
||||||
|
Reference in New Issue
Block a user