##// END OF EJS Templates
errors: stop passing non-strings to Abort's constructor...
errors: stop passing non-strings to Abort's constructor The next patch will change `Abort`'s constructor and `__bytes__` functions and they will start assuming that the first argument is the messages as `bytes`. Differential Revision: https://phab.mercurial-scm.org/D9178

File last commit:

r43346:2372284d default
r46273:a736ab68 default
Show More
sitecustomize.py
17 lines | 457 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
Augie Fackler
formatting: blacken the codebase...
r43346 covpath = os.path.join(
os.environ['COVERAGE_DIR'], '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