File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 12
12
variables :
13
13
DOTNET_VERSION : ' 3.1.x'
14
14
DOTNET_VERSION_5 : ' 5.0.x'
15
- PYTHON_VERSION : ' 3.8'
15
+ DOTNET_VERSION_6 : ' 6.x'
16
+ PYTHON_VERSION : ' 3.9'
16
17
17
18
steps :
18
19
- task : UsePythonVersion@0
@@ -21,15 +22,20 @@ steps:
21
22
versionSpec : $(PYTHON_VERSION)
22
23
addToPath : true
23
24
- task : UseDotNet@2
24
- displayName : ' Install DotNet'
25
+ displayName : ' Install DotNet 3 '
25
26
inputs :
26
27
packageType : ' sdk'
27
28
version : $(DOTNET_VERSION)
28
29
- task : UseDotNet@2
29
- displayName : ' Install DotNet'
30
+ displayName : ' Install DotNet 5 '
30
31
inputs :
31
32
packageType : ' sdk'
32
33
version : $(DOTNET_VERSION_5)
34
+ - task : UseDotNet@2
35
+ displayName : ' Install DotNet 6'
36
+ inputs :
37
+ packageType : ' sdk'
38
+ version : $(DOTNET_VERSION_6)
33
39
- pwsh : ' $(Build.SourcesDirectory)/.ci/e2e_integration_test/start-e2e.ps1'
34
40
env :
35
41
AzureWebJobsStorage : $(AzureWebJobsStorage)
Original file line number Diff line number Diff line change 5
5
6
6
# Python worker E2E integration test
7
7
# The E2E integration test will test the worker against a prerelease version of core tools
8
- $FUNC_RUNTIME_VERSION = ' 3 '
8
+ $FUNC_RUNTIME_VERSION = ' 4 '
9
9
$FUNC_RUNTIME_LANGUAGE = ' python'
10
10
$AZURE_FUNCTIONS_ENVIRONMENT = " development"
11
11
$PYAZURE_WEBHOST_DEBUG = " true"
@@ -84,14 +84,16 @@ Write-Host "Function Exe Path: $funcExePath"
84
84
Set-Location $env: BUILD_SOURCESDIRECTORY
85
85
Write-Host " Set-Location: $env: BUILD_SOURCESDIRECTORY "
86
86
87
+ Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
87
88
Write-Host " Preparing E2E integration tests..." - ForegroundColor Green
88
89
Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
89
90
python - m pip install - U pip
90
91
pip install - e .[dev ]
91
92
python setup.py build
92
93
python setup.py extension
93
94
Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
94
-
95
+ Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
96
+ Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
95
97
Write-Host " Running E2E integration tests..." - ForegroundColor Green
96
98
Write-Host " -----------------------------------------------------------------------------`n " - ForegroundColor Green
97
99
$env: CORE_TOOLS_EXE_PATH = " $funcExePath "
You can’t perform that action at this time.
0 commit comments