Skip to content

Commit 95a4793

Browse files
hallvictoriaVictoria Hall
and
Victoria Hall
authored
build: update blob to 1.0.0b3 (#1639)
* Update pyproject.toml * test extensions fix * run emulator tests for sdk & extension release branches --------- Co-authored-by: Victoria Hall <[email protected]>
1 parent ed4e08e commit 95a4793

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

eng/ci/emulator-tests.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
trigger: none # ensure this is not ran as a CI build
1+
trigger: # run for sdk and extension release branches
2+
batch: true
3+
branches:
4+
include:
5+
- sdk/*
6+
- extensions/*
27

38
pr:
49
branches:

eng/scripts/test-extensions.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
python -m pip install --upgrade pip
44
if [[ $2 != "3.7" ]]; then
5-
python -m pip install -e $1/PythonExtensionArtifact
5+
python -m pip install -e $1/PythonExtensionArtifact/$3
66
python -m pip install --pre -e .[test-http-v2]
77
fi
88
if [[ $2 != "3.7" && $2 != "3.8" ]]; then
9-
python -m pip install -e $1/PythonExtensionArtifact
9+
python -m pip install -e $1/PythonExtensionArtifact/$3
1010
python -m pip install --pre -U -e .[test-deferred-bindings]
1111
fi
1212

eng/templates/jobs/ci-emulator-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
chmod +x eng/scripts/test-setup.sh
7070
chmod +x eng/scripts/test-extensions.sh
7171
72-
eng/scripts/test-extensions.sh $(Pipeline.Workspace) $(PYTHON_VERSION)
72+
eng/scripts/test-extensions.sh $(Pipeline.Workspace) $(PYTHON_VERSION) $(PYTHONEXTENSIONNAME)
7373
eng/scripts/test-setup.sh
7474
displayName: 'Install test python extension, dependencies and the worker'
7575
condition: or(eq(variables.isExtensionsRelease, true), eq(variables['USETESTPYTHONEXTENSIONS'], true))

eng/templates/official/jobs/ci-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
chmod +x eng/scripts/test-setup.sh
112112
chmod +x eng/scripts/test-extensions.sh
113113
114-
eng/scripts/test-extensions.sh $(Pipeline.Workspace) $(PYTHON_VERSION)
114+
eng/scripts/test-extensions.sh $(Pipeline.Workspace) $(PYTHON_VERSION) $(PYTHONEXTENSIONNAME)
115115
eng/scripts/test-setup.sh
116116
displayName: 'Install test python extension, dependencies and the worker'
117117
condition: or(eq(variables.isExtensionsRelease, true), eq(variables['USETESTPYTHONEXTENSIONS'], true))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ test-http-v2 = [
7777
"orjson"
7878
]
7979
test-deferred-bindings = [
80-
"azurefunctions-extensions-bindings-blob==1.0.0b2"
80+
"azurefunctions-extensions-bindings-blob==1.0.0b3"
8181
]
8282

8383
[build-system]

0 commit comments

Comments
 (0)