* [gentoo-commits] proj/g-sorcery:master commit in: scripts/
@ 2013-07-08 23:53 Jauhien Piatlicki
0 siblings, 0 replies; 4+ messages in thread
From: Jauhien Piatlicki @ 2013-07-08 23:53 UTC (permalink / raw
To: gentoo-commits
commit: 1783dcebe04637516737954acacff7b567654b53
Author: Jauhien Piatlicki (jauhien) <piatlicki <AT> gmail <DOT> com>
AuthorDate: Mon Jul 8 23:51:14 2013 +0000
Commit: Jauhien Piatlicki <piatlicki <AT> gmail <DOT> 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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/g-sorcery:master commit in: scripts/
@ 2013-09-16 0:19 Jauhien Piatlicki
0 siblings, 0 replies; 4+ messages in thread
From: Jauhien Piatlicki @ 2013-09-16 0:19 UTC (permalink / raw
To: gentoo-commits
commit: 422bdd968daad001c3cd39d06d2321ba54f635e3
Author: Jauhien Piatlicki (jauhien) <piatlicki <AT> gmail <DOT> com>
AuthorDate: Sun Sep 15 22:46:28 2013 +0000
Commit: Jauhien Piatlicki <piatlicki <AT> gmail <DOT> com>
CommitDate: Sun Sep 15 22:46:28 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/g-sorcery.git;a=commit;h=422bdd96
scripts/all_pythons.sh: show python version
---
scripts/all_pythons.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/all_pythons.sh b/scripts/all_pythons.sh
index 136239c..a31dbea 100755
--- a/scripts/all_pythons.sh
+++ b/scripts/all_pythons.sh
@@ -4,5 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
for VER in 2.7 3.2 3.3 #2.6 to be added later
do
+ echo
+ echo "testing python${VER}"
python${VER} ${DIR}/run_tests.py
done
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/g-sorcery:master commit in: scripts/
@ 2016-01-17 15:16 Jauhien Piatlicki
0 siblings, 0 replies; 4+ messages in thread
From: Jauhien Piatlicki @ 2016-01-17 15:16 UTC (permalink / raw
To: gentoo-commits
commit: dd4f5f2118ba536f6b23079c38870fcde5d00350
Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 22:49:24 2016 +0000
Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 22:49:24 2016 +0000
URL: https://gitweb.gentoo.org/proj/g-sorcery.git/commit/?id=dd4f5f21
[scripts] run tests for Python 3.5
scripts/all_pythons.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/all_pythons.sh b/scripts/all_pythons.sh
index af4c1f1..fe1d74f 100755
--- a/scripts/all_pythons.sh
+++ b/scripts/all_pythons.sh
@@ -2,7 +2,7 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-for VER in 2.7 3.3 3.4
+for VER in 2.7 3.3 3.4 3.5
do
echo
echo "testing python${VER}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/g-sorcery:master commit in: scripts/
@ 2021-05-04 15:50 Ulrich Müller
0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2021-05-04 15:50 UTC (permalink / raw
To: gentoo-commits
commit: 24741aa432a4bf14a61b4502ac4a74bb81ceb302
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 23 17:24:52 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue May 4 15:48:07 2021 +0000
URL: https://gitweb.gentoo.org/proj/g-sorcery.git/commit/?id=24741aa4
all_pythons.py: Update python versions
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
scripts/all_pythons.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/all_pythons.sh b/scripts/all_pythons.sh
index fe1d74f..3c85974 100755
--- a/scripts/all_pythons.sh
+++ b/scripts/all_pythons.sh
@@ -2,7 +2,7 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-for VER in 2.7 3.3 3.4 3.5
+for VER in 2.7 3.6 3.7 3.8
do
echo
echo "testing python${VER}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-05-04 15:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-04 15:50 [gentoo-commits] proj/g-sorcery:master commit in: scripts/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2016-01-17 15:16 Jauhien Piatlicki
2013-09-16 0:19 Jauhien Piatlicki
2013-07-08 23:53 Jauhien Piatlicki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox