~ubuntu-branches/debian/squeeze/nose/squeeze

« back to all changes in this revision

Viewing changes to unit_tests/test_plugin_interfaces.py

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Marek, Torsten Marek, Gustavo Noronha Silva
  • Date: 2008-06-12 13:39:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080612133943-2q7syp67fwl4on13
Tags: 0.10.3-1

[Torsten Marek]
* New upstream release (Closes: #461994)
* debian/control
  - bump standards version to 3.8.0, no changes necessary
  - add suggestions for python-coverage (Closes: #457053)
  - change dependency on python-setuptools into 
    python-pkg-resources (Closes: #468719)
  - added myself to uploaders

[Gustavo Noronha Silva]
* debian/control:
  - remove -1 from build-dep on setuptools

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        from nose.selector import Selector
10
10
 
11
11
        
12
 
        exclude = [ 'loadTestsFromDir', 'loadTestsFromModuleName',
13
 
                    'loadTestsFromNames' ]
 
12
        exclude = [ 'loadTestsFromGenerator',
 
13
                    'loadTestsFromGeneratorMethod'
 
14
                    ]
14
15
        
15
16
        selfuncs = [ f for f in dir(Selector)
16
17
                     if f.startswith('want') ]