fix: 1ES pipeline fixes #1576
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run all tests in tests/consumption_tests in Docker using a consumption image | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CI Consumption E2E tests | |
on: | |
workflow_dispatch: | |
inputs: | |
custom_image: | |
description: "Use a custom image to run consumption tests" | |
required: false | |
push: | |
branches: [ dev, main, release/* ] | |
pull_request: | |
branches: [ dev, main, release/* ] | |
jobs: | |
build: | |
name: "Python Consumption CI Run" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ] | |
permissions: read-all | |
steps: | |
- name: Checkout code. | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install azure-functions --pre | |
python -m pip install -U -e .[dev] | |
if [[ "${{ matrix.python-version }}" != "3.7" ]]; then | |
python -m pip install -e .[test-http-v2] | |
fi | |
python setup.py build | |
- name: Running 3.7 Tests | |
if: matrix.python-version == 3.7 | |
env: | |
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString37 }} | |
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }} | |
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }} | |
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests | |
- name: Running 3.8 Tests | |
if: matrix.python-version == 3.8 | |
env: | |
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString38 }} | |
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }} | |
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }} | |
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests | |
- name: Running 3.9 Tests | |
if: matrix.python-version == 3.9 | |
env: | |
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString39 }} | |
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }} | |
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }} | |
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests | |
- name: Running 3.10 Tests | |
if: matrix.python-version == 3.10 | |
env: | |
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString310 }} | |
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }} | |
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }} | |
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests | |
- name: Running 3.11 Tests | |
if: matrix.python-version == 3.11 | |
env: | |
AzureWebJobsStorage: ${{ secrets.LinuxStorageConnectionString311 }} | |
CUSTOM_IMAGE: ${{ github.event.inputs.custom_image }} | |
_DUMMY_CONT_KEY: ${{ secrets._DUMMY_CONT_KEY }} | |
run: python -m pytest -n auto --dist loadfile -vv --reruns 4 --instafail tests/consumption_tests |