print versions of Cython and Python when running tests
authorStefan Behnel <scoder@users.berlios.de>
Fri, 2 May 2008 07:03:59 +0000 (09:03 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 2 May 2008 07:03:59 +0000 (09:03 +0200)
runtests.py

index 1f922e12e359c6f10c37992e4b2834efd66450f6..6a94e0a25e557a270ecf83c49ff60116d6f8d9e5 100644 (file)
@@ -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: