changeset 35:6dae5ed53f22

Setting up tests for 3.8 (not yet really tested)
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sat, 24 Sep 2016 09:48:40 +0200
parents 7500a4ecb935
children c27e23a3509c
files mercurial_all_paths.py tox.ini
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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] <outgoing options>')),
 }
 
-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'
--- 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]