python-nose-timer 0.3.0-3 source package in Ubuntu

Changelog

python-nose-timer (0.3.0-3) unstable; urgency=medium

  [ Ondřej Nový ]
  * Fixed VCS URLs (https).
  * d/rules: Changed UPSTREAM_GIT protocol to https
  * d/control: Use <email address hidden> as maintainer
  * d/control: Set Vcs-* to salsa.debian.org
  * d/watch: Use https protocol
  * Use debhelper-compat instead of debian/compat.

  [ Daniel Baumann ]
  * Updating copyright format url.
  * Updating maintainer field.
  * Running wrap-and-sort -bast.
  * Removing gbp.conf, not used anymore or should be specified in the
    developers dotfiles.
  * Updating standards version to 4.1.0.

  [ Thomas Goirand ]
  * Removed Python 2 support (Closes: #937955).
  * Fixed d/copyright ordering and years.

 -- Thomas Goirand <email address hidden>  Fri, 13 Sep 2019 12:50:03 +0200

Upload details

Uploaded by:
Debian OpenStack
Uploaded to:
Sid
Original maintainer:
Debian OpenStack
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
Jammy release universe misc
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-nose-timer_0.3.0-3.dsc 2.1 KiB 5591ffc30269d865769472df911eb82a73c0f15df5e67192fb26bc57b2ed345e
python-nose-timer_0.3.0.orig.tar.xz 5.4 KiB 79764e41648b3010d5408da5ed0882c3da94c25fa10c3651d8dc35ae1035ae35
python-nose-timer_0.3.0-3.debian.tar.xz 3.1 KiB 7658df23aa2f180a9005f983a5a8164a492b6a65bd62cfaeefbc181d0f110688

Available diffs

No changes file available.

Binary packages built by this source

python3-nose-timer: timer plugin for nosetests - Python 3.x

 A timer plugin for nosetests that answers the question: how much time does
 every test take? Run nosetests with the --with-timer flag, and you will see
 a list of the tests and the time spent by each one (in seconds):
 .
  myapp.tests.ABigTestCase.test_the_world_is_running: 56.0010s
  myapp.tests.ABigTestCase.test_the_rest_of_the_galaxy_is_running: 2356.0010s
 .
 It is also possible to list the 10 slowest tests this way:
 .
  nosetests --with-timer --timer-top-n 10
 .
 This package contains the Python 3.x module.