1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
@echo off
REM ======================================================
REM Screenshots update script
REM ======================================================
REM Licensed under the terms of the MIT License
REM Copyright (c) 2020 Pierre Raybaut
REM (see LICENSE file for more details)
REM ======================================================
setlocal
call %~dp0utils GetScriptPath SCRIPTPATH
call %FUNC% SetPythonPath
call %FUNC% UsePython
cd %SCRIPTPATH%\..\
python qwt/tests/__init__.py --mode screenshots
python doc/plot_example.py
python doc/symbol_path_example.py
call %FUNC% EndOfScript
|