Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
D committed Jun 2, 2019
1 parent 4f7c9a5 commit e7523d3
Show file tree
Hide file tree
Showing 13 changed files with 760 additions and 152 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@
"name": "debug integration test",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"env": {
// MSFT_TEST_DA_PORT: Enable this to debug the debug-adapter while the tests are running (The test will look for a debug-adapter server on port 4712 instead of launching a new one)
// "MSFT_TEST_DA_PORT": "4712",
// MSFT_TEST_TIMEOUT_MULTIPLIER: The tests have long timeouts for the CI server. While debugging locally it's sometimes useful to reduce the timeouts, to be able to run all the tests faster when they are failing. This value is a multiplier that will be applied to all timeouts using during the tests... (Work in progress)
"MSFT_TEST_TIMEOUT_MULTIPLIER": "0.4"
// TEST_DA_PORT: Enable this to debug the debug-adapter while the tests are running (The test will look for a debug-adapter server on port 4712 instead of launching a new one)
// "TEST_DA_PORT": "4712",
// TEST_TIMEOUT_MULTIPLIER: The tests have long timeouts for the CI server. While debugging locally it's sometimes useful to reduce the timeouts, to be able to run all the tests faster when they are failing. This value is a multiplier that will be applied to all timeouts using during the tests... (Work in progress)
"TEST_TIMEOUT_MULTIPLIER": "0.4"
},
"args": [
"--require", "source-map-support/register",
Expand Down
10 changes: 0 additions & 10 deletions .vsts/job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,23 +105,13 @@ jobs:
publishRunAttachments: true

- ${{ if eq(parameters.name, 'Windows') }}:
- task: CmdLine@2
condition: always()
inputs:
script: 'dir /b > filelist.txt'
workingDirectory: 'logs/'
- task: PublishPipelineArtifact@0
condition: always()
inputs:
artifactName: 'testsOnWindows'
targetPath: 'logs/'

- ${{ if eq(parameters.name, 'MacOS') }}:
- task: CmdLine@2
condition: always()
inputs:
script: 'ls -1 > filelist.txt'
workingDirectory: 'logs/'
- task: PublishPipelineArtifact@0
condition: always()
inputs:
Expand Down
Loading

0 comments on commit e7523d3

Please sign in to comment.