diff --git a/build/ci/templates/test_phases.yml b/build/ci/templates/test_phases.yml index f21a9bf0d488..bafbbe8ff0b7 100644 --- a/build/ci/templates/test_phases.yml +++ b/build/ci/templates/test_phases.yml @@ -26,7 +26,6 @@ # 'testDebugger' # 'testFunctional' # 'perfomanceTests' -# 'testSmoke' # 'venvTests' steps: @@ -533,28 +532,6 @@ steps: env: DISPLAY: :10 - # Run the smoke tests. - # - # This task only runs if the string 'testSmoke' exists in variable `TestsToRun`. - # - # Example command line (windows pwsh): - # > npm run clean - # > npm run updateBuildNumber -- --buildNumber 0.0.0-local - # > npm run package - # > npx gulp clean:cleanExceptTests - # > npm run testSmoke - - bash: | - npm install -g vsce - npm run clean - npm run updateBuildNumber -- --buildNumber $BUILD_BUILDID - npm run package - npx gulp clean:cleanExceptTests - npm run testSmoke - displayName: 'Run Smoke Tests' - condition: and(succeeded(), contains(variables['TestsToRun'], 'testSmoke')) - env: - DISPLAY: :10 - - task: PublishBuildArtifacts@1 inputs: pathtoPublish: $(Build.ArtifactStagingDirectory) diff --git a/build/ci/vscode-python-pr-validation.yaml b/build/ci/vscode-python-pr-validation.yaml index 1241ff34a8df..25f3a14dad89 100644 --- a/build/ci/vscode-python-pr-validation.yaml +++ b/build/ci/vscode-python-pr-validation.yaml @@ -68,11 +68,6 @@ jobs: VMImageName: 'macos-10.13' TestsToRun: 'testSingleWorkspace' NeedsPythonTestReqs: true - 'Mac-Py3.7 Smoke': - PythonVersion: '3.7' - VMImageName: 'macos-10.13' - TestsToRun: 'testSmoke' - NeedsPythonTestReqs: true 'Mac-Py2.7 Unit+Single': PythonVersion: '2.7' VMImageName: 'macos-10.13' @@ -88,11 +83,6 @@ jobs: VMImageName: 'ubuntu-16.04' TestsToRun: 'testSingleWorkspace' NeedsPythonTestReqs: true - 'Linux-Py3.7 Smoke': - PythonVersion: '3.7' - VMImageName: 'ubuntu-16.04' - TestsToRun: 'testSmoke' - NeedsPythonTestReqs: true 'Linux-Py2.7 Unit+Single': PythonVersion: '2.7' VMImageName: 'ubuntu-16.04' diff --git a/package.json b/package.json index 2108e4307968..c9b75e08d909 100644 --- a/package.json +++ b/package.json @@ -2220,7 +2220,6 @@ "testSingleWorkspace": "node ./out/test/testBootstrap.js ./out/test/standardTest.js", "testMultiWorkspace": "node ./out/test/testBootstrap.js ./out/test/multiRootTest.js", "testPerformance": "node ./out/test/testBootstrap.js ./out/test/performanceTest.js", - "testSmoke": "node ./out/test/smokeTest.js", "lint-staged": "node gulpfile.js", "lint": "tslint src/**/*.ts -t verbose", "clean": "gulp clean",