We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b4cb2 commit b34d7c6Copy full SHA for b34d7c6
run_test_launcher.bat
@@ -1,18 +1,13 @@
1
@echo off
2
-
3
setlocal
4
set PYTHONPATH=%cd%
5
6
-for /f %%f in ('dir /b c:\w*') do (call :test %%f)
7
-pause
8
9
-exit /B %ERRORLEVEL%
10
11
-:test
12
-set ENV=C:\%~1\scripts\env.bat
13
-if exist %ENV% (
14
- echo ************************** Testing with %~1 **************************
15
- call %ENV%
16
- python -m qwt.tests.__init__
+if defined WINPYDIRBASE (
+ call %WINPYDIRBASE%\scripts\env.bat
+ @echo ==============================================================================
+ @echo:
+ @echo Using WinPython from %WINPYDIRBASE%
17
)
18
-exit /B 0
+python -m qwt.tests.__init__
0 commit comments