We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6540e commit 240c3afCopy full SHA for 240c3af
run_unattended_tests.bat
@@ -4,9 +4,19 @@ setlocal
4
set PYTHONPATH=%cd%
5
set TEST_UNATTENDED=1
6
7
+if not defined WINPYDIRBASE ( goto :no )
8
+
9
+choice /t 5 /c yn /cs /d n /m "Do you want to run tests only from %WINPYDIRBASE% (y/n)?"
10
+if errorlevel 2 goto :no
11
12
+:yes
13
+call %WINPYDIRBASE%\scripts\env.bat
14
+python -m qwt.tests.__init__
15
+pause
16
+exit /B %ERRORLEVEL%
17
+:no
18
for /f %%f in ('dir /b c:\w*') do (call :test %%f)
19
pause
-
20
exit /B %ERRORLEVEL%
21
22
:test
0 commit comments