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

Changelog

python-nose-random (1.0.0-1) unstable; urgency=low

  * Initial release. (Closes: #888091)

 -- Andreas Tille <email address hidden>  Tue, 23 Jan 2018 10:04:01 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-nose-random_1.0.0-1.dsc 2.2 KiB e06954dacf3d812e991aa437e4ccf53be8f6a83049ec20c4756893696203bbbf
python-nose-random_1.0.0.orig.tar.gz 3.7 KiB 528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148
python-nose-random_1.0.0-1.debian.tar.xz 2.0 KiB 74ab5fdb2be5b3093413915f8c94049e75e670696ed00d051dcb1432e69a4cc4

No changes file available.

Binary packages built by this source

python-nose-random: No summary available for python-nose-random in ubuntu focal.

No description available for python-nose-random in ubuntu focal.

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.