From 7e83fcf7a6640fc2a7ffaad0cacd55bfa184cedc Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 2 May 2008 09:03:59 +0200 Subject: [PATCH] print versions of Cython and Python when running tests --- runtests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtests.py b/runtests.py index 1f922e12..6a94e0a2 100644 --- 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: -- 2.26.2