From 00d4c8162d56d61e7288cbcf5f4cd0d59bb75fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Breitbart?= Date: Mon, 24 Jun 2019 22:53:13 +0200 Subject: [PATCH] remove azure job, change api test path --- azure-pipelines.yml | 26 -------------------------- package.json | 2 +- 2 files changed, 1 insertion(+), 27 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 33c3e100..e8b23d34 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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 diff --git a/package.json b/package.json index 9e965a0f..f26c010f 100644 --- a/package.json +++ b/package.json @@ -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",