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

Changelog

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

  * Team upload.
  * Update to new upstream release 2.3.1

 -- Scott Talbert <email address hidden>  Tue, 26 Mar 2024 23:19:05 -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
Oracular proposed universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pytest-timeout_2.3.1-1.dsc 2.2 KiB 9cc48f5fcd59bc7ad7973b3d6404328ab3844e7b88bd277a33361bed136a5531
python-pytest-timeout_2.3.1.orig.tar.gz 17.3 KiB 12397729125c6ecbdaca01035b9e5239d4db97352320af155b3f5de1ba5165d9
python-pytest-timeout_2.3.1-1.debian.tar.xz 4.3 KiB 6806a86239ff9ed606823a1afe93f01e6c80b14d8e6844b2271a59e2cd8609bd

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.