Skip to content

Commit 7803694

Browse files
authored
Merge branch 'dev' into gaaguiar/disable_dep_iso
2 parents a68928b + 8800edd commit 7803694

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.ci/perf_tests/dockerfiles/perf_tests.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG PYTHON_VERSION=3.8
22

3-
FROM mcr.microsoft.com/azure-functions/python:3.0.15418-python$PYTHON_VERSION
3+
FROM mcr.microsoft.com/azure-functions/python:4-python$PYTHON_VERSION
44

55
# Mounting local machines azure-functions-python-worker and azure-functions-python-library onto it
66
RUN rm -rf /azure-functions-host/workers/python/${PYTHON_VERSION}/LINUX/X64/azure_functions_worker

.github/workflows/perf-testing-setup.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
test_to_run: [ SyncHttpTriggerHelloWorld, SyncHttpTriggerWithSyncRequests, AsyncHttpTriggerWithAsyncRequest, SyncHttpTriggerCPUIntensive ] #, SyncPutBlobAsBytesReturnHttpResponse, SyncGetBlobAsBytesReturnHttpResponse ]
19+
test_to_run: [ SyncHttpTriggerHelloWorld ]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -27,6 +27,14 @@ jobs:
2727
uses: actions/setup-dotnet@v1
2828
with:
2929
dotnet-version: '3.1.405'
30+
- name: Set up Dotnet 5.0.x
31+
uses: actions/setup-dotnet@v1
32+
with:
33+
dotnet-version: '5.0.x'
34+
- name: Set up Dotnet 6.x
35+
uses: actions/setup-dotnet@v1
36+
with:
37+
dotnet-version: '6.x'
3038
- name: Setup k6 for throughput testing
3139
run: |
3240
cd $GITHUB_WORKSPACE

0 commit comments

Comments
 (0)