diff --git a/tests/test-doctest.py b/tests/test-doctest.py --- a/tests/test-doctest.py +++ b/tests/test-doctest.py @@ -49,12 +49,10 @@ 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') @@ -65,25 +63,26 @@ testmod('mercurial.match') testmod('mercurial.mdiff') testmod('mercurial.minirst') +testmod('mercurial.parser') testmod('mercurial.patch') testmod('mercurial.pathutil') -testmod('mercurial.parser') +testmod('mercurial.posix') 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.utils.dateutil') testmod('mercurial.utils.stringutil') +if os.name == 'nt': + testmod('mercurial.windows') testmod('hgext.convert.convcmd') testmod('hgext.convert.cvsps') testmod('hgext.convert.filemap')