##// END OF EJS Templates
tests: make test-doctest.t module list match reality...
Kyle Lippincott -
r45054:529cb231 default
parent child Browse files
Show More
@@ -49,14 +49,11 b' def testmod(name, optionflags=0, testtar'
49 49 runner.summarize()
50 50
51 51
52 testmod('mercurial.changegroup')
53 52 testmod('mercurial.changelog')
54 53 testmod('mercurial.cmdutil')
55 54 testmod('mercurial.color')
56 55 testmod('mercurial.config')
57 testmod('mercurial.context')
58 56 testmod('mercurial.dagparser', optionflags=doctest.NORMALIZE_WHITESPACE)
59 testmod('mercurial.dispatch')
60 57 testmod('mercurial.encoding')
61 58 testmod('mercurial.fancyopts')
62 59 testmod('mercurial.formatter')
@@ -65,23 +62,21 b" testmod('mercurial.hgweb.hgwebdir_mod')"
65 62 testmod('mercurial.match')
66 63 testmod('mercurial.mdiff')
67 64 testmod('mercurial.minirst')
65 testmod('mercurial.parser')
68 66 testmod('mercurial.patch')
69 67 testmod('mercurial.pathutil')
70 testmod('mercurial.parser')
71 68 testmod('mercurial.pycompat')
72 testmod('mercurial.revlog')
73 69 testmod('mercurial.revlogutils.deltas')
74 70 testmod('mercurial.revset')
75 71 testmod('mercurial.revsetlang')
72 testmod('mercurial.simplemerge')
76 73 testmod('mercurial.smartset')
77 74 testmod('mercurial.store')
78 75 testmod('mercurial.subrepo')
79 testmod('mercurial.templatefilters')
80 76 testmod('mercurial.templater')
81 77 testmod('mercurial.ui')
82 testmod('mercurial.url')
83 78 testmod('mercurial.util')
84 testmod('mercurial.util', testtarget='platform')
79 testmod('mercurial.util', testtarget='platform') # windows.py or posix.py
85 80 testmod('mercurial.utils.dateutil')
86 81 testmod('mercurial.utils.stringutil')
87 82 testmod('hgext.convert.convcmd')
@@ -93,3 +88,7 b" testmod('hgext.fix')"
93 88 testmod('hgext.mq')
94 89 # Helper scripts in tests/ that have doctests:
95 90 testmod('drawdag')
91 testmod('test-run-tests')
92
93 # Disabled since it requires extra modules that might not be installed.
94 # testmod('i18n.check-translation')
General Comments 0
You need to be logged in to leave comments. Login now