We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082d7ef commit f10ccf4Copy full SHA for f10ccf4
.github/workflows/ci_ut_workflow.yml
@@ -59,6 +59,9 @@ jobs:
59
python -m pip install --upgrade pip
60
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
61
python -m pip install -U -e .[dev]
62
+ if [[ "${{ matrix.python-version }}" != "3.7" && "${{ matrix.python-version }}" != "3.8" ]]; then
63
+ python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --pre -U -e .[test-deferred-bindings]
64
+ fi
65
66
# Retry a couple times to avoid certificate issue
67
retry 5 python setup.py build
0 commit comments