File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,19 @@ environment:
5
5
PYTHON_ARCH : " 32"
6
6
nodejs_version : " 8.9.1"
7
7
APPVEYOR : " true"
8
+ DEBUGGER_TEST : " true"
9
+ - PYTHON : " C:\\ Python36"
10
+ PYTHON_VERSION : " 3.6.3"
11
+ PYTHON_ARCH : " 32"
12
+ nodejs_version : " 8.9.1"
13
+ APPVEYOR : " true"
14
+ SINGLE_WORKSPACE_TEST : " true"
15
+ - PYTHON : " C:\\ Python36"
16
+ PYTHON_VERSION : " 3.6.3"
17
+ PYTHON_ARCH : " 32"
18
+ nodejs_version : " 8.9.1"
19
+ APPVEYOR : " true"
20
+ MULTIROOT_WORKSPACE_TEST : " true"
8
21
9
22
init :
10
23
- " ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
@@ -23,8 +36,11 @@ install:
23
36
test_script :
24
37
- yarn run clean
25
38
- yarn run vscode:prepublish
26
- - yarn run testDebugger --silent
27
- - yarn run testSingleWorkspace --silent
28
- - yarn run testMultiWorkspace --silent
39
+ - if [%DEBUGGER_TEST%]==[true] (
40
+ yarn run testDebugger --silent)
41
+ - if [%SINGLE_WORKSPACE_TEST%]==[true] (
42
+ yarn run testSingleWorkspace --silent)
43
+ - if [%MULTIROOT_WORKSPACE_TEST%]==[true] (
44
+ yarn run testMultiWorkspace --silent)
29
45
30
46
build : off
You can’t perform that action at this time.
0 commit comments