##// END OF EJS Templates
context: possibly yield initial fctx in blockdescendants()...
context: possibly yield initial fctx in blockdescendants() If initial 'fctx' has changes in line range with respect to its parents, we yield it first. This makes 'followlines(..., descend=True)' consistent with 'descendants()' revset which yields the starting revision. We reuse one iteration of blockancestors() which does exactly what we want. In test-annotate.t, adjust 'startrev' in one case to cover the situation where the starting revision does not touch specified line range.

File last commit:

r30477:d2c40510 default
r31992:3e47a40d 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