From a91aade7fdbe5d6535bc2533b9fbbe04b413a844 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Thu, 4 Mar 2010 14:57:38 +0100 Subject: [PATCH] Correct call of nosetests on Windows systems. --- test.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.bat b/test.bat index b5178d9..14ac458 100755 --- a/test.bat +++ b/test.bat @@ -14,5 +14,5 @@ :: along with this program. If not, see . @echo off set PYDIR=C:\Python26 -%PYDIR%\python.exe %PYDIR%\scripts\nosetests -v -m "^test_.*" tests/ +%PYDIR%\scripts\nosetests -v -m "^test_.*" tests/ @pause