python-pytest-timeout 2.2.0-1 source package in Ubuntu

Changelog

python-pytest-timeout (2.2.0-1) unstable; urgency=medium

  * Team upload.
  * Update to new upstream release 2.2.0
  * Switch to pyproject build (Closes: #1052812)
  * Update standards version to 4.6.2, no changes needed

 -- Scott Talbert <email address hidden>  Mon, 09 Oct 2023 20:35:45 -0400

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pytest-timeout_2.2.0-1.dsc 2.2 KiB e3531b65926d68d216e2fdc32fee872fe292fd7f2d9f5a413330716a93065ccd
python-pytest-timeout_2.2.0.orig.tar.gz 16.0 KiB 3b0b95dabf3cb50bac9ef5ca912fa0cfc286526af17afc806824df20c2f72c90
python-pytest-timeout_2.2.0-1.debian.tar.xz 4.3 KiB 88b9f36b458ec2f4b24469d88c94ad034b3a065cf83275deb81f8bd34326bdbe

Available diffs

No changes file available.

Binary packages built by this source

python3-pytest-timeout: Pytest plugin to abort hanging tests - Python 3.X

 This is a plugin which will terminate tests after a certain timeout.
 When doing so it will show a stack dump of all threads running at the
 time. This is useful when running tests under a continuous integration
 server or simply if you don’t know why the test suite hangs.
 .
 Note that while by default on POSIX systems py.test will continue to
 execute the tests after a test has timed, out this is not always
 possible. Often the only sure way to interrupt a hanging test is by
 terminating the entire process. As this is a hard termination
 (os._exit()) it will result in no teardown, JUnit XML output etc. But
 the plugin will ensure you will have the debugging output on stderr
 nevertheless, which is the most important part at this stage. See below
 for detailed information on the timeout methods and their side-effects.
 .
 The pytest-timeout plugin has been tested on Python 2.6 or higher,
 including 3.X and pypy.
 .
 This package provides support for Python 3.X.