From patchwork Fri Mar 13 04:12:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D8280: tests: make test-doctest.t module list match reality From: phabricator X-Patchwork-Id: 45760 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Fri, 13 Mar 2020 04:12:29 +0000 spectral created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8280 AFFECTED FILES tests/test-doctest.py CHANGE DETAILS To: spectral, #hg-reviewers Cc: mercurial-devel 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')