From de2b38f8cc6f40892176d9bfb2bb85cff7236026 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Fri, 7 Dec 2012 22:36:29 +0100 Subject: [PATCH] Use py.test under windows. --- test.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.bat b/test.bat index b9d3ef4..d08527e 100644 --- a/test.bat +++ b/test.bat @@ -1,5 +1,5 @@ :: Run patool test suite -:: Copyright (C) 2010 Bastian Kleineidam +:: Copyright (C) 2010-2012 Bastian Kleineidam :: This program is free software: you can redistribute it and/or modify :: it under the terms of the GNU General Public License as published by :: the Free Software Foundation, either version 3 of the License, or @@ -14,5 +14,5 @@ :: along with this program. If not, see . @echo off set PYDIR=C:\Python27 -%PYDIR%\python.exe %PYDIR%\scripts\nosetests -v -m "^test_.*" tests/ -@pause +%PYDIR%\python.exe -m pytest tests +pause