From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A5E74138200 for ; Tue, 9 Jul 2013 23:13:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59BC4E0A6F; Tue, 9 Jul 2013 22:52:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBC8AE0BE4 for ; Tue, 9 Jul 2013 22:51:34 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D67CC33E9FE for ; Mon, 8 Jul 2013 23:53:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7D1ECE545D for ; Mon, 8 Jul 2013 23:53:54 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1373327474.1783dcebe04637516737954acacff7b567654b53.jauhien@gentoo> Subject: [gentoo-commits] proj/g-sorcery:master commit in: scripts/ X-VCS-Repository: proj/g-sorcery X-VCS-Files: scripts/all_pythons.sh X-VCS-Directories: scripts/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: 1783dcebe04637516737954acacff7b567654b53 X-VCS-Branch: master Date: Mon, 8 Jul 2013 23:53:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8089b1d6-3c9e-4160-b1b6-f13e31ed544e X-Archives-Hash: 5f0377b8eb04c3bb7b9e079da309e310 commit: 1783dcebe04637516737954acacff7b567654b53 Author: Jauhien Piatlicki (jauhien) gmail com> AuthorDate: Mon Jul 8 23:51:14 2013 +0000 Commit: Jauhien Piatlicki gmail com> CommitDate: Mon Jul 8 23:51:14 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/g-sorcery.git;a=commit;h=1783dceb scripts/all_pythons.sh --- scripts/all_pythons.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/all_pythons.sh b/scripts/all_pythons.sh new file mode 100755 index 0000000..136239c --- /dev/null +++ b/scripts/all_pythons.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +for VER in 2.7 3.2 3.3 #2.6 to be added later +do + python${VER} ${DIR}/run_tests.py +done