##// END OF EJS Templates
httppeer: expose API descriptor on httpv2peer...
httppeer: expose API descriptor on httpv2peer The API descriptor in wireprotov2 is much more expressive than space-delimited tokens and it will be difficult to define methods to query it in all of the ways we'll want to query it. So let's just declare defeat and expose the API descriptor on the peer instance. As part of this, we define a new interface for version 2 peers, fulfilling a TODO in the process. Differential Revision: https://phab.mercurial-scm.org/D4974

File last commit:

r30477:d2c40510 default
r40207:dac438b7 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