comparison mercurial_all_paths.py @ 34:7500a4ecb935

Preliminary steps towards tests (tox.ini, would-be testedwith decl)
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Thu, 10 Mar 2016 23:12:29 +0100
parents 9d595bda6f2f
children 6dae5ed53f22
comparison
equal deleted inserted replaced
33:6f57d125ed85 34:7500a4ecb935
8 import mercurial.util 8 import mercurial.util
9 import mercurial.commands 9 import mercurial.commands
10 import mercurial.cmdutil 10 import mercurial.cmdutil
11 from mercurial.i18n import _ 11 from mercurial.i18n import _
12 12
13 #pylint:disable=invalid-name,broad-except,line-too-long 13 # pylint:disable=invalid-name,broad-except,line-too-long
14 14
15 15
16 def _iter_over_paths(command, ui, repo, **opts): 16 def _iter_over_paths(command, ui, repo, **opts):
17 """execute given command on multiple paths""" 17 """execute given command on multiple paths"""
18 # Extract our options and filter them out 18 # Extract our options and filter them out
88 "outgoingall": ( 88 "outgoingall": (
89 outgoingall, 89 outgoingall,
90 EXT_OPTS + _original_options('outgoing'), 90 EXT_OPTS + _original_options('outgoing'),
91 _('[-g GROUP] [--ignore-errors] <outgoing options>')), 91 _('[-g GROUP] [--ignore-errors] <outgoing options>')),
92 } 92 }
93
94 testedwith = '2.7 2.9 3.0 3.3 3.6 3.7'
95 buglink = 'https://bitbucket.org/Mekk/mercurial-all_paths/issues'