remove azure job, change api test path

This commit is contained in:
Jörg Breitbart
2019-06-24 22:53:13 +02:00
parent b6b810b625
commit 00d4c8162d
2 changed files with 1 additions and 27 deletions
-26
View File
@@ -83,32 +83,6 @@ jobs:
yarn test-api --headless
displayName: 'Integration tests'
- job: Benchmarks
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
inputs:
versionSpec: "1.9.4"
displayName: 'Install Yarn'
- script: |
yarn
displayName: 'Install dependencies and build'
- script: |
yarn benchmark-baseline
displayName: 'Baseline data'
- script: |
git checkout
yarn clean && yarn
displayName: 'Checkout target'
- script: |
yarn benchmark-eval
displayName: 'Eval changes'
- job: Release
dependsOn:
- Linux
+1 -1
View File
@@ -14,7 +14,7 @@
"lint": "tslint 'src/**/*.ts' './demo/**/*.ts' './addons/**/*.ts'",
"test": "npm run test-unit",
"posttest": "npm run lint",
"test-api": "mocha \"./out-test/api/*.api.js\"",
"test-api": "mocha \"**/*.api.js\"",
"test-unit": "node ./bin/test.js",
"build": "tsc -b ./tsconfig.all.json",
"prepare": "npm run build",