-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMake.bat
54 lines (43 loc) · 1.05 KB
/
Make.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
:: Copyright 2018, IBM.
::
:: This source code is licensed under the Apache License, Version 2.0 found in
:: the LICENSE.txt file in the root directory of this source tree.
@ECHO OFF
@SETLOCAL enabledelayedexpansion
pushd %~dp0
SET target=%~n1
IF "%target%"=="lint" GOTO :lint
IF "%target%"=="test" GOTO :test
IF "%target%"=="profile" GOTO :profile
:usage
ECHO.
ECHO.Usage:
ECHO. .\make lint Runs Pyhton source code analysis tool
ECHO. .\make test Runs tests
ECHO. .\make profile Runs profiling tests
ECHO.
GOTO :end
:lint
pylint -rn qiskit_addon_sympy test
IF errorlevel 9009 GOTO :error
GOTO :next
:test
python -m unittest discover -v
IF errorlevel 9009 GOTO :error
GOTO :next
:profile
python -m unittest discover -p "profile*.py" -v
IF errorlevel 9009 GOTO :error
GOTO :next
:error
ECHO.
ECHO.Somehting is missing in your Python installation.
ECHO.Please make sure you have properly installed Anaconda3
ECHO.(https://www.continuum.io/downloads), and that you are
ECHO.running the "Anaconda Shell Command".
ECHO.
exit /b 1
:next
:end
popd
ENDLOCAL