##// END OF EJS Templates
releasenotes: add import check for fuzzywuzzy...
Rishabh Madan -
r33660:4d1e7994 default
parent child Browse files
Show More
@@ -652,3 +652,12 b' def has_virtualenv():'
652 @check("fsmonitor", "running tests with fsmonitor")
652 @check("fsmonitor", "running tests with fsmonitor")
653 def has_fsmonitor():
653 def has_fsmonitor():
654 return 'HGFSMONITOR_TESTS' in os.environ
654 return 'HGFSMONITOR_TESTS' in os.environ
655
656 @check("fuzzywuzzy", "Fuzzy string matching library")
657 def has_fuzzywuzzy():
658 try:
659 import fuzzywuzzy
660 fuzzywuzzy.__version__
661 return True
662 except ImportError:
663 return False
General Comments 0
You need to be logged in to leave comments. Login now