1458: Run VS Code tests on CI r=matklad a=etaoins

This is actually much faster than I expected; it takes about 13 seconds to download VS Code and run the unit tests. This means the VS Code tests are still significantly faster than the Rust ones.

If this ends up being unreliable we can always remove it later or move it to a separate optional job.

We also need to ignore the `.vscode-test` directory when running `prettier` or it will get upset about some temporary JSON files VS Code creates.

cc @killercup 

Co-authored-by: Ryan Cumming <etaoins@gmail.com>
This commit is contained in:
bors[bot] 2019-06-30 10:17:29 +00:00
commit bb70d18a0a
3 changed files with 21 additions and 6 deletions

View file

@ -6,7 +6,8 @@ before_cache:
matrix:
include:
- os: linux
- name: "Rust Tests"
os: linux
dist: xenial
language: rust
rust: stable
@ -18,7 +19,8 @@ matrix:
env:
- RUSTFLAGS="-D warnings", CARGO_INCREMENTAL=0
- os: linux
- name: "Rust Docs"
os: linux
if: branch = master AND type = push
before_script:
- DEPLOY_DOCS=1
@ -29,11 +31,22 @@ matrix:
env:
- RUSTFLAGS="-D warnings", CARGO_INCREMENTAL=0
- language: node_js
- name: "VS Code Tests"
os: linux
language: node_js
dist: xenial
node_js: node
before_script: false
services:
- xvfb
before_install: cd editors/code
install:
- npm install
- npm run vscode:prepublish
script:
- cd editors/code && npm ci && npm run travis
- npm ci
- npm run travis
env:
- CXX="g++-4.9", CC="gcc-4.9"
branches:
only:

View file

@ -0,0 +1,2 @@
node_modules/
.vscode-test/

View file

@ -25,7 +25,7 @@
"lint": "tslint --project .",
"test": "node node_modules/vscode/bin/test",
"prettier": "prettier **/*.{json,ts}",
"travis": "npm run compile && npm run lint && npm run prettier -- --list-different"
"travis": "npm run compile && npm run test && npm run lint && npm run prettier -- --list-different"
},
"prettier": {
"tabWidth": 4,