python-nose-random 1.0.0-3 source package in Ubuntu

Changelog

python-nose-random (1.0.0-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Bump debhelper from old 11 to 13.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository-Browse.

  [ Andreas Tille ]
  * Fix watch file
  * Standards-Version: 4.6.1 (routine-update)
  * Testsuite: autopkgtest-pkg-python (routine-update)
  * Add salsa-ci file (routine-update)
  * Rules-Requires-Root: no (routine-update)

 -- Andreas Tille <email address hidden>  Thu, 01 Dec 2022 07:36:40 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-nose-random_1.0.0-3.dsc 2.1 KiB 09d60811e0bf27bdf07fb8fe69cbbf44b2f6ebd1b5991d0b759e5d573fe5f4c3
python-nose-random_1.0.0.orig.tar.gz 3.7 KiB 528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148
python-nose-random_1.0.0-3.debian.tar.xz 2.5 KiB d412a2f50f2876088048cbe0f18a225ca366d52e51c27575a8d5f9af7884efa2

Available diffs

No changes file available.

Binary packages built by this source

python3-nose-random: nose plugin to facilitate randomized unit testing with Python 3

 Python nose-random is designed to facilitate Monte-Carlo style unit testing.
 The idea is to improve testing by running your code against a large number
 of randomly generated input scenarios.
 .
 Even with random testing it's important that test success/failure is
 reproducible, otherwise it's hard to
 .
   * know if you've fixed a failing test
   * know if an test fails only on some machines or configurations and not
     others
   * debug a failing test
 .
 nose-random avoids this pitfall because it
 .
   * uses a fixed seed so that each test run is identical
   * tells you which scenario caused a test to fail
   * lets you to run the test only on a specific scenario to facilitate
     debugging
 .
 This package provides the Python 3 version of the module.