Skip to content

Commit

Permalink
Merge pull request #5979 from Microsoft/ben/win-integration
Browse files Browse the repository at this point in the history
Enable integration tests on Windows Appveyor
  • Loading branch information
bpasero committed Apr 29, 2016
2 parents 0c8affa + c315e81 commit 1b5317a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ build_script:

test_script:
- .\scripts\test.bat
- .\scripts\test-integration.bat
6 changes: 6 additions & 0 deletions scripts/test-integration.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
@echo off
setlocal

rem APPVEYOR Builds
if not "%APPVEYOR%" == "" (
set ELECTRON_NO_ATTACH_CONSOLE=1
set ATOM_SHELL_INTERNAL_RUN_AS_NODE=
)

:: Integration Tests
.\scripts\code.bat %~dp0\..\extensions\vscode-api-tests\testWorkspace --extensionDevelopmentPath=%~dp0\..\extensions\vscode-api-tests --extensionTestsPath=%~dp0\..\extensions\vscode-api-tests\out
.\scripts\code.bat %~dp0\..\extensions\vscode-colorize-tests\test --extensionDevelopmentPath=%~dp0\..\extensions\vscode-colorize-tests --extensionTestsPath=%~dp0\..\extensions\vscode-colorize-tests\out
Expand Down

0 comments on commit 1b5317a

Please sign in to comment.