Skip to main content

Nose plugin to randomly order tests and control random.seed.

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

https://img.shields.io/travis/adamchainz/nose-randomly.svg https://img.shields.io/pypi/v/nose-randomly.svg

Nose plugin to randomly order tests and control random.seed.

Features

All of these features are on by default but can be disabled with flags.

  • Randomly shuffles the submodules, TestCase classes + test functions when loading a module of tests.

  • Randomly shuffles the test functions inside a TestCase when loading it.

  • Resets random.seed() at the start of every test to a fixed number - this defaults to time.time() from the start of your test run, but you can pass in --random-seed to repeat a randomness-induced failure.

  • If factory boy is installed, its random state is reset at the start of every test. This allows for repeatable use of its random ‘fuzzy’ features.

About

Randomness in testing can be quite powerful to discover hidden flaws in the tests themselves, as well as giving a little more coverage to your system.

By randomly ordering the tests, the risk of surprising inter-test dependencies is reduced - a technique used in many places, for example Google’s C++ test runner googletest.

By resetting the random seed to a repeatable number for each test, tests can create data based on random numbers and yet remain repeatable, for example factory boy’s fuzzy values. This is good for ensuring that tests specify the data they need and that the tested system is not affected by any data that is filled in randomly due to not being specified.

Usage

Install from pip with:

pip install nose-randomly

Nose will automatically find the plugin.

To activate it on your test run, use the --with-randomly flag, for example:

nosetests -v --with-randomly

The output will start with an extra line that tells you the random seed that is being used:

Using --randomly-seed=1234
test_D (abcd_tests.Tests) ... ok
...

If the tests then fail due to ordering or randomly created data, you can then restart them with that seed:

nosetests -v --with-randomly --randomly-seed=1234

You can disable behaviours you don’t like with the following flags:

  • --randomly-dont-shuffle-modules - turn off the shuffling of the contents of modules

  • --randomly-dont-shuffle-cases - turn off the shuffling of test functions inside TestCase classes

  • --randomly-dont-reset-seed - turn off the reset of random.seed() at the start of every test

History

nose has an unmerged pull request from 2009 to add random ordering functionality. This is available in plugin format in the nose-randomize package. It works quite well but I found that since it replaces all of the test loading machinery inside nose, it can interact badly with other plugins. This plugin was developed as a thinner layer to achieve the same thing, plus the random seed restting which was not available before.

History

1.0.0 (2015-07-23)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nose-randomly-1.0.0.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

nose_randomly-1.0.0-py2.py3-none-any.whl (7.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file nose-randomly-1.0.0.tar.gz.

File metadata

File hashes

Hashes for nose-randomly-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d73819af8d9664ef46822b3471c9f27887f70262f38272cf53277971a8e8d39e
MD5 268d8ae29f8dfaa1223742f720b5fc61
BLAKE2b-256 52d04a4dc0c9f180252298f0848c8ce19dc30233376804acac5c848efca85b51

See more details on using hashes here.

File details

Details for the file nose_randomly-1.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for nose_randomly-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2496faf9ee652b19827df07df695c01d17ce29f3440a07d64bfffeddcc440bb7
MD5 f35fc65fc6f941dec3dad7bad529aa96
BLAKE2b-256 68423f632820aad4e74e27bc540b787b954f188b5fe75fed9abf45d76e01a3dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page