Skip to content

Commit 9a956c1

Browse files
committed
split appveyor tests (jobs)
1 parent 202e1fa commit 9a956c1

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

appveyor.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ environment:
55
PYTHON_ARCH: "32"
66
nodejs_version: "8.9.1"
77
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"
821

922
init:
1023
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
@@ -23,8 +36,11 @@ install:
2336
test_script:
2437
- yarn run clean
2538
- 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)
2945

3046
build: off

0 commit comments

Comments
 (0)