Mercurial > hg
changeset 44564:529cb23155bc
tests: make test-doctest.t module list match reality
Differential Revision: https://phab.mercurial-scm.org/D8280
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Fri, 13 Mar 2020 19:25:37 -0700 |
parents | 1922694d638f |
children | 0af56d3ee24c |
files | tests/test-doctest.py |
diffstat | 1 files changed, 7 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-doctest.py Thu Mar 12 20:08:05 2020 -0700 +++ b/tests/test-doctest.py Fri Mar 13 19:25:37 2020 -0700 @@ -49,14 +49,11 @@ runner.summarize() -testmod('mercurial.changegroup') testmod('mercurial.changelog') testmod('mercurial.cmdutil') testmod('mercurial.color') testmod('mercurial.config') -testmod('mercurial.context') testmod('mercurial.dagparser', optionflags=doctest.NORMALIZE_WHITESPACE) -testmod('mercurial.dispatch') testmod('mercurial.encoding') testmod('mercurial.fancyopts') testmod('mercurial.formatter') @@ -65,23 +62,21 @@ testmod('mercurial.match') testmod('mercurial.mdiff') testmod('mercurial.minirst') +testmod('mercurial.parser') testmod('mercurial.patch') testmod('mercurial.pathutil') -testmod('mercurial.parser') testmod('mercurial.pycompat') -testmod('mercurial.revlog') testmod('mercurial.revlogutils.deltas') testmod('mercurial.revset') testmod('mercurial.revsetlang') +testmod('mercurial.simplemerge') testmod('mercurial.smartset') testmod('mercurial.store') testmod('mercurial.subrepo') -testmod('mercurial.templatefilters') testmod('mercurial.templater') testmod('mercurial.ui') -testmod('mercurial.url') testmod('mercurial.util') -testmod('mercurial.util', testtarget='platform') +testmod('mercurial.util', testtarget='platform') # windows.py or posix.py testmod('mercurial.utils.dateutil') testmod('mercurial.utils.stringutil') testmod('hgext.convert.convcmd') @@ -93,3 +88,7 @@ testmod('hgext.mq') # Helper scripts in tests/ that have doctests: testmod('drawdag') +testmod('test-run-tests') + +# Disabled since it requires extra modules that might not be installed. +# testmod('i18n.check-translation')