# HG changeset patch # User Patrick Mezard # Date 1187112349 -7200 # Node ID e5b21a549cc571af57b1341fb4b15242dee478bc # Parent 9b0efeb725f4dea0bc5bbd4fd23b1755790ab48e hghave: test hotshot dependencies (debian does not provide profile) diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -37,7 +37,9 @@ def has_eol_in_paths(): def has_hotshot(): try: - import hotshot + # hotshot.stats tests hotshot and many problematic dependencies + # like profile. + import hotshot.stats return True except ImportError: return False