projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c0cebd
)
print versions of Cython and Python when running tests
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 2 May 2008 07:03:59 +0000
(09:03 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 2 May 2008 07:03:59 +0000
(09:03 +0200)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index 1f922e12e359c6f10c37992e4b2834efd66450f6..6a94e0a25e557a270ecf83c49ff60116d6f8d9e5 100644
(file)
--- a/
runtests.py
+++ b/
runtests.py
@@
-2,6
+2,7
@@
import os, sys, re, shutil, unittest, doctest
+from Cython.Compiler.Version import version
from Cython.Compiler.Main import \
CompilationOptions, \
default_options as pyrex_default_options, \
@@
-194,6
+195,10
@@
if __name__ == '__main__':
if not sys.path or sys.path[0] != WORKDIR:
sys.path.insert(0, WORKDIR)
+ print "Running tests against Cython %s" % version
+ print "Python", sys.version
+ print
+
try:
sys.argv.remove("-C")
except ValueError: