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

Changelog

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

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Mon, 17 Oct 2022 01:49:22 +0100

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pytest-timeout_2.1.0-3.dsc 2.2 KiB a1e4c454dbbdfe69e54e2d6ee592118ce59447f3432c5f0785dcf0d5f29f7c5c
python-pytest-timeout_2.1.0.orig.tar.gz 18.0 KiB c07ca07404c612f8abbe22294b23c368e2e5104b521c1790195561f37e1ac3d9
python-pytest-timeout_2.1.0-3.debian.tar.xz 4.2 KiB 44262322bdc7a8211fa558a66996e18a91ab1ea7203f5c1e641b3f11f10f3972

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.