branch | stable |
changeset 45633 | 5a19d7c9129b |
parent 44656 | 15aef805619d |
child 45657 | 4a146cff76fa |
--- a/tests/test-doctest.py Fri Oct 02 19:19:01 2020 +0530 +++ b/tests/test-doctest.py Mon Oct 05 15:08:15 2020 +0200 @@ -4,7 +4,7 @@ from __future__ import print_function import doctest -import os +import os.path import re import subprocess import sys @@ -72,6 +72,9 @@ cwd = os.path.dirname(os.environ["TESTDIR"]) +if not os.path.isdir(os.path.join(cwd, ".hg")): + sys.exit(0) + files = subprocess.check_output( "hg files --print0 \"%s\"" % fileset, shell=True, cwd=cwd, ).split(b'\0')