Skip to content

Commit dbea0bb

Browse files
author
Victoria Hall
committed
sep step for installations
1 parent a9a8fd2 commit dbea0bb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci_e2e_workflow.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,15 @@ jobs:
6161
python -m pip install --upgrade pip==23.0
6262
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
6363
python -m pip install -U -e .[dev]
64-
if [[ "${{ matrix.python-version }}" != "3.7" ]] && [[ "${{ matrix.python-version }}" != "3.8"]]: then
65-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --pre -U -e .[test-deferred-bindings]
6664
6765
# Retry a couple times to avoid certificate issue
6866
retry 5 python setup.py build
6967
retry 5 python setup.py webhost --branch-name=dev
7068
retry 5 python setup.py extension
7169
mkdir logs
70+
- name: Install .[test-deferred-bindings] for 3.9, 3.10, 3.11
71+
if: matrix.python-version != "3.7" && matrix.python-version != "3.8"
72+
run: python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --pre -U -e .[test-deferred-bindings]
7273
- name: Grant execute permission
7374
run: chmod +x .github/Scripts/e2e-tests.sh
7475
- name: Running 3.7 Tests

0 commit comments

Comments
 (0)