Skip to content
Snippets Groups Projects
  1. Apr 22, 2014
    • Gregory Szorc's avatar
      run-tests: pass a full test path into Test.__init__ · f8515564d617
      Gregory Szorc authored
      Previously, a Test's path came from the base directory of all tests and
      a filename leaf. There is not a strong reason why an absolute test path
      can not be specified.
      
      This change isn't strictly necessary. But it does enable scenarios such
      as more easily running tests from multiple, non-sibling directories.
      f8515564d617
  2. Apr 21, 2014
  3. May 16, 2014
    • Mads Kiilerich's avatar
      convert: mercurial source: convert global tags only - not local tags · 6b8daeea638a
      Mads Kiilerich authored
      Mercurial tags can be local (tag -l, stored in .hg/localtags) or global (normal
      tags, tracked in .hgtags) ... or extensions can add other kind of tags.
      
      Convert would take all tags (except "tip"), not just the ones from .hgtags, and
      put them into .hgtags.
      
      Instead, convert only the global tags that come from .hgtags.
      6b8daeea638a
  4. Apr 21, 2014
  5. May 17, 2014
  6. Apr 23, 2014
    • Sean Farley's avatar
      localrepo: use _matchstatus of context objects · 6adfc311eee8
      Sean Farley authored
      Now that we have the machinery in place, we call the context method for
      changing the match object in the case of comparing the working directory with
      its parent.
      
      This removes the last of the hard-coded workingctx knowledge in localrepo
      paving the way for us to remove localrepo.status completely.
      6adfc311eee8
  7. Apr 24, 2014
    • Sean Farley's avatar
      workingctx: override _matchstatus for parentworking case · 869a28d016e9
      Sean Farley authored
      This patch encapsulate the logic for changing the match.bad function when
      comparing against the working directory's parent. Future patches will remove
      more of the 'if ... else' blocks in localrepo.status that test for this working
      directory parent case.
      869a28d016e9
  8. Apr 23, 2014
  9. Apr 24, 2014
  10. Apr 23, 2014
    • Sean Farley's avatar
      localrepo: remove unneeded unpacking of r · e18ef2e11219
      Sean Farley authored
      This unpacking is unneeded now because previous patches have removed the need
      for this method to modify each of these variables in favor of passing the whole
      set around to pre/post hook methods of the corresponding context object.
      e18ef2e11219
  11. Apr 22, 2014
  12. Apr 15, 2014
  13. Mar 11, 2014
  14. Apr 24, 2014
    • Sean Farley's avatar
      basectx: add _manifestmatches method · 3b1ec3d4ece6
      Sean Farley authored
      This method is a duplicate of localrepo.mfmatches and sets the stage for
      factoring localrepo.status into a context method that will be customizable
      based on inheritance and object type.
      3b1ec3d4ece6
  15. Mar 11, 2014
    • Sean Farley's avatar
      localrepo: always set the variable r in status method · 2edb8648c500
      Sean Farley authored
      This is a small patch to help streamline keeping tracking of the list of files
      for status in a variable already called 'r' ('s' is for subrepos in this
      method). We now move the setting of it out of an 'if' block so that we can
      later refactor more code into the context objects.
      2edb8648c500
  16. Apr 20, 2014
    • Gregory Szorc's avatar
      run-tests: execute tests via unittest · d19164a018a1
      Gregory Szorc authored
      Now that unittest mode is functionally equivalent to the default mode,
      we switch the default execution mode to unittest and remove the choice
      of different execution modes.
      d19164a018a1
  17. Apr 22, 2014
Loading