On Wed, Nov 12, 2008 at 1:04 PM, Ondrej Certik <[EMAIL PROTECTED]> wrote:
> Print it the same way as py.test.
> ---
>  sympy/utilities/runtests.py |    5 ++++-
>  1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/sympy/utilities/runtests.py b/sympy/utilities/runtests.py
> index c350651..f2467b3 100644
> --- a/sympy/utilities/runtests.py
> +++ b/sympy/utilities/runtests.py
> @@ -337,7 +337,10 @@ class PyTestReporter(Reporter):
>
>     def start(self):
>         self.write_center("test process starts")
> -        self.write("py.test like reporting.\n\n")
> +        executable = sys.executable
> +        v = sys.version_info
> +        python_version = "%s.%s.%s-%s-%s" % v
> +        self.write("executable:   %s  (%s)\n\n" % (executable, 
> python_version))
>         self._t_start = clock()
>
>     def finish(self):

Please review this patch as well.

Ondrej

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to