hgext/fsmonitor/__init__.py
changeset 29841 d5883fd055c6
parent 29341 0d83ad967bf8
child 30332 318a24b52eeb
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
   111 from . import (
   111 from . import (
   112     state,
   112     state,
   113     watchmanclient,
   113     watchmanclient,
   114 )
   114 )
   115 
   115 
   116 # Note for extension authors: ONLY specify testedwith = 'internal' for
   116 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
   117 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   117 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   118 # be specifying the version(s) of Mercurial they are tested with, or
   118 # be specifying the version(s) of Mercurial they are tested with, or
   119 # leave the attribute unspecified.
   119 # leave the attribute unspecified.
   120 testedwith = 'internal'
   120 testedwith = 'ships-with-hg-core'
   121 
   121 
   122 # This extension is incompatible with the following blacklisted extensions
   122 # This extension is incompatible with the following blacklisted extensions
   123 # and will disable itself when encountering one of these:
   123 # and will disable itself when encountering one of these:
   124 _blacklist = ['largefiles', 'eol']
   124 _blacklist = ['largefiles', 'eol']
   125 
   125