File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,15 @@ jobs:
61
61
python -m pip install --upgrade pip==23.0
62
62
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
63
63
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]
66
64
67
65
# Retry a couple times to avoid certificate issue
68
66
retry 5 python setup.py build
69
67
retry 5 python setup.py webhost --branch-name=dev
70
68
retry 5 python setup.py extension
71
69
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]
72
73
- name : Grant execute permission
73
74
run : chmod +x .github/Scripts/e2e-tests.sh
74
75
- name : Running 3.7 Tests
You can’t perform that action at this time.
0 commit comments