From 68f2163ae5901c5aa7bdd1aef1275c3f5f5fff92 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Tue, 17 Sep 2019 15:43:20 +0400 Subject: [PATCH] Run smoke tests for Windows and others on CI and Nightly (#7432) --- build/ci/vscode-python-ci.yaml | 17 +++++++++++++++++ build/ci/vscode-python-nightly-ci.yaml | 17 +++++++++++++++++ build/ci/vscode-python-pr-validation.yaml | 5 +++++ 3 files changed, 39 insertions(+) diff --git a/build/ci/vscode-python-ci.yaml b/build/ci/vscode-python-ci.yaml index fd6b2ae3540..65c14287b39 100644 --- a/build/ci/vscode-python-ci.yaml +++ b/build/ci/vscode-python-ci.yaml @@ -268,6 +268,23 @@ jobs: NeedsPythonTestReqs: true NeedsPythonFunctionalReqs: true + # Smoke Tests + 'Mac-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'macos-10.13' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + 'Linux-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'ubuntu-16.04' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + 'Win-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'vs2017-win2016' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + pool: vmImage: $(VMImageName) diff --git a/build/ci/vscode-python-nightly-ci.yaml b/build/ci/vscode-python-nightly-ci.yaml index 814743588a1..d5b3749efc2 100644 --- a/build/ci/vscode-python-nightly-ci.yaml +++ b/build/ci/vscode-python-nightly-ci.yaml @@ -436,6 +436,23 @@ jobs: NeedsPythonTestReqs: true NeedsPythonFunctionalReqs: true + # Smoke Tests + 'Mac-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'macos-10.13' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + 'Linux-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'ubuntu-16.04' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + 'Win-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'vs2017-win2016' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true + pool: vmImage: $(VMImageName) diff --git a/build/ci/vscode-python-pr-validation.yaml b/build/ci/vscode-python-pr-validation.yaml index cfab6304749..14fbf5e47a6 100644 --- a/build/ci/vscode-python-pr-validation.yaml +++ b/build/ci/vscode-python-pr-validation.yaml @@ -78,6 +78,11 @@ jobs: VMImageName: 'ubuntu-16.04' TestsToRun: 'testSmoke' NeedsPythonTestReqs: true + 'Win-Py3.7 Smoke': + PythonVersion: '3.7' + VMImageName: 'vs2017-win2016' + TestsToRun: 'testSmoke' + NeedsPythonTestReqs: true 'Mac-Py2.7 Unit+Single': PythonVersion: '2.7' VMImageName: 'macos-10.13'