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

Changelog

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

  * Team upload.
  * do-not-use-rseed.patch (Closes: #1026513).

 -- Thomas Goirand <email address hidden>  Tue, 03 Jan 2023 09:22:11 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-nose-random_1.0.0-4.dsc 2.1 KiB 1b06bb7548f0567ba051866641501b98ded2ce52b693130355ccc7f63fc31bcf
python-nose-random_1.0.0.orig.tar.gz 3.7 KiB 528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148
python-nose-random_1.0.0-4.debian.tar.xz 2.8 KiB 02d0622a411c35cb8c3c0548d7eb1c97c5c0aab9373426c6511bcec6a2dc2ff5

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.