/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Martin Albisetti
  • Date: 2008-08-02 20:44:17 UTC
  • mfrom: (576.5.1 trunk)
  • Revision ID: argentina@gmail.com-20080802204417-4nnen5crzj0r9zao
Disable the ability to click on tags that are not available in the current view (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        'test_history',
33
33
        ]
34
34
 
35
 
    if os.name == 'nt':
36
 
        testmod_names.append("test_tortoise_bzr")
37
 
 
38
35
    result.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))
39
36
    return result
40
37