Code Monkey home page Code Monkey logo

nose-dep's Introduction

Nosetest plugin for test dependencies.

Normally tests should not depend on each other - and it should be avoided as long as possible. Optimally each test should be able to run in isolation.

However there might be rare cases or special circumstances where one would want this. For example if having very slow integration tests where redoing what test A did just to run test B would simply be too costly. Or temporarily while testing or debugging. It's also possible that one wants some test to run first as 'smoke tests' such that the rest can be skipped if those tests fail.

The current implementation allows marking tests with the @depends decorator where it can be declared if the test needs to run before or after some other specific test(s).

There is also support for skipping tests based on the dependency results, thus if test B depends on test A and test A fails then B will be skipped with the reason that A failed.

Nosedep also supports running the necessary dependencies for a single test, thus if you specify to run only test B and test B depends on A; then A will run before B to satisfy that dependency.

Note that 'before' dependencies are treated as soft. A soft dependency will only affect the test ordering, not force inclusion. For example if we have::

def test_a:
  pass

@depends(before=test_a)
def test_b:
  pass

and run all tests they would run in the order b,a. If you specify to run only either one of them only that test would run. However changing it to::

@depends(after=test_b)
def test_a:
  pass

def test_b:
  pass

would affect the case when you specify to run only test a, since it would have to run test b first to specify the 'after' dependency since it's a 'hard' dependency.

Finally there is prioritization support. Each test can be given an integer priority and the tests will run in order from lowest to highest. Dependencies take precedence so in total the ordering will be:

  1. All tests with a priority lower or equal to the default that are not part of any dependency chain ordered first by priority then by name.
  2. Dependency groups in order, while each dependency group is internally ordered the same as point 1.
  3. All tests with priority higher than the default that are not part of any dependency chain ordered first by priority then by name.

Default priority if not specified is 50.

Note: Currently no support for Python 2.6 and 3.2. Should work for 2.7 and 3.3+.

Info

PyPI version Code Health Build Status Coverage Status

nose-dep's People

Contributors

zitrax avatar larry-dean avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.