##// END OF EJS Templates
tests: prove that `hg init` works with Python 3...
tests: prove that `hg init` works with Python 3 The previous patch made `hg init` work!

File last commit:

r30477:d2c40510 default
r31401:ed23f929 default
Show More
sitecustomize.py
16 lines | 466 B | text/x-python | PythonLexer
Robert Stanca
py3: use absolute_import in sitecustomize.py
r28946 from __future__ import absolute_import
Gregory Szorc
run-tests: collect aggregate code coverage...
r24505 import os
if os.environ.get('COVERAGE_PROCESS_START'):
try:
import coverage
Augie Fackler
tests: update sitecustomize to use uuid1() instead of randrange()...
r30477 import uuid
Gregory Szorc
run-tests: collect aggregate code coverage...
r24505
covpath = os.path.join(os.environ['COVERAGE_DIR'],
Augie Fackler
tests: update sitecustomize to use uuid1() instead of randrange()...
r30477 'cov.%s' % uuid.uuid1())
Gregory Szorc
run-tests: collect aggregate code coverage...
r24505 cov = coverage.coverage(data_file=covpath, auto_data=True)
cov._warn_no_data = False
cov._warn_unimported_source = False
cov.start()
except ImportError:
pass