/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: Jasper Groenewegen
  • Date: 2008-07-22 19:46:47 UTC
  • mfrom: (560.2.1 LP151818-no-push-Q)
  • Revision ID: colbrac@xs4all.nl-20080722194647-25sbnnkj9wdt2v00
Merge removal of question to set default push location

Show diffs side-by-side

added added

removed removed

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