summaryrefslogtreecommitdiff
path: root/scripts/all-pythons
diff options
context:
space:
mode:
authorJonathan Lange <jml@canonical.com>2011-07-26 23:19:47 +0100
committerJonathan Lange <jml@canonical.com>2011-07-26 23:19:47 +0100
commit2daae2ad24b673e117670b36f8f3aad50e088976 (patch)
treebd4039ddf555373782f74912131bae88c7fecb07 /scripts/all-pythons
parent19f441b4c62e4070f08abcb43f4cb8140c99fbbe (diff)
downloadtesttools-2daae2ad24b673e117670b36f8f3aad50e088976.tar.gz
Remove the '.' from the name so jenkins doesn't think that they are sub-components.
Diffstat (limited to 'scripts/all-pythons')
-rwxr-xr-xscripts/all-pythons2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/all-pythons b/scripts/all-pythons
index 55ea8ba..708623c 100755
--- a/scripts/all-pythons
+++ b/scripts/all-pythons
@@ -32,7 +32,7 @@ ROOT = os.path.dirname(os.path.dirname(__file__))
def run_for_python(version, result):
result.time(now())
python = 'python%s' % (version,)
- test = PlaceHolder(python)
+ test = PlaceHolder(''.join(c for c in python if c != '.'))
process = subprocess.Popen(
'%s -c pass' % (python,), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)