##// END OF EJS Templates
tests: remove 'hghave symlink' from test-import-git.t...
tests: remove 'hghave symlink' from test-import-git.t The test had a long chain of commits depending on execbits in some of first commits. The hashes are checked throughout the file, so there was no elegant way to make it pass both with and without execbits. We now rollback the execbits-or-not commits and make a stable change instead. The hash chain is thus updated once but is now a bit more stable. The test coverage should be unaltered.

File last commit:

r14971:0b21ae0a default
r16910:ad229181 default
Show More
sitecustomize.py
5 lines | 111 B | text/x-python | PythonLexer
Dirkjan Ochtman
tests: use external coverage, mandate newer version...
r10648 try:
import coverage
Augie Fackler
tests: use getattr instead of hasattr
r14971 getattr(coverage, 'process_startup', lambda: None)()
Dirkjan Ochtman
tests: use external coverage, mandate newer version...
r10648 except ImportError:
pass