Mercurial > python-hglib
view tests/__init__.py @ 213:388820908580 2.6.2
hglib: update grep to cope with behavior change in hg 5.2.
Since version 5.2, revision filed not printed without all argument.
Fixed inaccurate pasring result with lastest hg and changed test case.
author | Daehyeok Mun <daehyeok@gmail.com> |
---|---|
date | Sat, 21 Mar 2020 19:59:50 -0700 |
parents | cc2b7540fa2b |
children | 8341f2494b3f |
line wrap: on
line source
import os, tempfile, sys, shutil def setUp(): os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C' os.environ["EMAIL"] = "Foo Bar <foo.bar@example.com>" os.environ['CDPATH'] = '' os.environ['COLUMNS'] = '80' os.environ['GREP_OPTIONS'] = '' os.environ['http_proxy'] = '' os.environ["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"' os.environ["HGMERGE"] = "internal:merge" os.environ["HGUSER"] = "test" os.environ["HGENCODING"] = "ascii" os.environ["HGENCODINGMODE"] = "strict" tmpdir = tempfile.mkdtemp('', 'python-hglib.') os.environ["HGTMP"] = os.path.realpath(tmpdir) os.environ["HGRCPATH"] = os.pathsep def tearDown(self): os.chdir('..') shutil.rmtree(os.environ["HGTMP"])