-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.bat
39 lines (27 loc) · 2.47 KB
/
startup.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
echo =====================================================================================================================
echo = StartUp the AutoTest Framework =
echo = version 0.0.1 generate =
echo = visit websit : github.com/tsbxmw/Framework to get lastest version =
echo = python 2.7 is nessary to start up the framework =
echo = * * * * =
echo =====================================================================================================================
if exist startupsystem.py (
echo #===================================================================================================================#
echo # Start Up now ... #
echo #===================================================================================================================#
echo #===================================================================================================================#
echo # install the paramiko #
pip install paramiko
echo # install the xlrd,xlwr
pip install xlrd
echo #===================================================================================================================#
python startupsystem.py
) else (
echo #===================================================================================================================#
echo # Sorry, can not find the startupsystem.py file, check please #
echo #===================================================================================================================#
)
echo #===================================================================================================================#
echo # exit system now ... #
echo #===================================================================================================================#