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

Changelog

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

  * Team upload.
  * Update to new upstream release 2.1.0

 -- Scott Talbert <email address hidden>  Mon, 14 Feb 2022 19:43:11 -0500

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

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pytest-timeout_2.1.0-1.dsc 2.2 KiB 2511e7e71f3e0ecdd57cb4ccca5a0cfb5752968547859d102b1141fb57b6288a
python-pytest-timeout_2.1.0.orig.tar.gz 18.0 KiB c07ca07404c612f8abbe22294b23c368e2e5104b521c1790195561f37e1ac3d9
python-pytest-timeout_2.1.0-1.debian.tar.xz 3.9 KiB ae3a6491279f7a0f61eb18dbf1bc9835b22570e06b3651a2be598fa894f4d923

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.