# HG changeset patch # User Marcin Kasperski # Date 1474703320 -7200 # Node ID 6dae5ed53f22a03b6cdd1c88c8a5e669266e31af # Parent 7500a4ecb9352deace1c0bfc8d3050f08c7c07e0 Setting up tests for 3.8 (not yet really tested) diff -r 7500a4ecb935 -r 6dae5ed53f22 mercurial_all_paths.py --- a/mercurial_all_paths.py Thu Mar 10 23:12:29 2016 +0100 +++ b/mercurial_all_paths.py Sat Sep 24 09:48:40 2016 +0200 @@ -30,7 +30,7 @@ # Act! for alias, path in paths: if path in handled: - ui.note(_("Skipping %s as it aliases already handled %s\n") % (alias, handled[path])) + ui.note(_("Skipping %s as path %s was already handled %s\n") % (alias, handled[path])) else: handled[path] = alias try: @@ -42,12 +42,12 @@ def pushall(ui, repo, **opts): - """execute pull on multiple paths""" + """execute push on multiple paths""" _iter_over_paths(mercurial.commands.push, ui, repo, **opts) def pullall(ui, repo, **opts): - """execute push on multiple paths""" + """execute pull on multiple paths""" _iter_over_paths(mercurial.commands.pull, ui, repo, **opts) @@ -91,5 +91,5 @@ _('[-g GROUP] [--ignore-errors] ')), } -testedwith = '2.7 2.9 3.0 3.3 3.6 3.7' +testedwith = '2.7 2.9 3.0 3.3 3.6 3.7 3.8' buglink = 'https://bitbucket.org/Mekk/mercurial-all_paths/issues' diff -r 7500a4ecb935 -r 6dae5ed53f22 tox.ini --- a/tox.ini Thu Mar 10 23:12:29 2016 +0100 +++ b/tox.ini Sat Sep 24 09:48:40 2016 +0200 @@ -5,7 +5,7 @@ distshare = {homedir}/.tox/distshare skip_missing_interpreters = True #envlist = {py26,py27}-hg{27,29,30,33,36,37} -envlist = {py26}-{hg27,hg29}, {py27}-hg{29,30,33,36,37} +envlist = {py26}-{hg27,hg29}, {py27}-hg{29,30,33,36,37,38} ; sync with testedwith in .py! [testenv]