.github/workflows/integration-tests-core.yml #90
Workflow file for this run
This file contains hidden or 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
| name: Core integration tests | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tag_version: | |
| description: 'The docker image tag for the firebolt core' | |
| required: false | |
| type: string | |
| python_version: | |
| description: 'Python version' | |
| required: false | |
| type: string | |
| default: '3.10' | |
| os_name: | |
| description: 'The operating system' | |
| required: false | |
| type: string | |
| default: 'ubuntu-latest' | |
| workflow_call: | |
| inputs: | |
| tag_version: | |
| description: 'The docker image tag for the firebolt core' | |
| required: false | |
| type: string | |
| python_version: | |
| description: 'Python version' | |
| required: false | |
| type: string | |
| default: '3.10' | |
| os_name: | |
| description: 'Operating system' | |
| required: false | |
| type: string | |
| default: 'ubuntu-latest' | |
| sendSlackNotifications: | |
| description: 'Send Slack notifications on failure' | |
| required: false | |
| type: boolean | |
| default: false | |
| secrets: | |
| SLACK_BOT_TOKEN: | |
| required: false | |
| jobs: | |
| run-core-integration-tests: | |
| permissions: | |
| contents: write # Push allure reports to gh-pages | |
| statuses: write # Update status on PR | |
| runs-on: ${{ inputs.os_name }} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: 'firebolt-db/firebolt-python-sdk' | |
| - name: Setup Firebolt Core | |
| id: setup-core | |
| uses: firebolt-db/action-setup-core@eabcd701de0be41793fda0655d29d46c70c847c2 # main | |
| with: | |
| tag_version: ${{ inputs.tag_version || vars.DEFAULT_CORE_IMAGE_TAG }} | |
| - name: Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: ${{ inputs.python_version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install ".[dev]" | |
| - name: Run integration tests HTTP | |
| env: | |
| SERVICE_ID: ${{ secrets.FIREBOLT_CLIENT_ID_STG_NEW_IDN }} | |
| SERVICE_SECRET: ${{ secrets.FIREBOLT_CLIENT_SECRET_STG_NEW_IDN }} | |
| DATABASE_NAME: "firebolt" | |
| ENGINE_NAME: "" | |
| STOPPED_ENGINE_NAME: "" | |
| API_ENDPOINT: "" | |
| ACCOUNT_NAME: "" | |
| CORE_URL: ${{ steps.setup-core.outputs.service_url }} | |
| run: | | |
| pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results/ | |
| - name: Run integration tests HTTPS | |
| env: | |
| SERVICE_ID: ${{ secrets.FIREBOLT_CLIENT_ID_STG_NEW_IDN }} | |
| SERVICE_SECRET: ${{ secrets.FIREBOLT_CLIENT_SECRET_STG_NEW_IDN }} | |
| DATABASE_NAME: "firebolt" | |
| ENGINE_NAME: "" | |
| STOPPED_ENGINE_NAME: "" | |
| API_ENDPOINT: "" | |
| ACCOUNT_NAME: "" | |
| CORE_URL: ${{ steps.setup-core.outputs.service_https_url }} | |
| run: | | |
| pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ | |
| - name: Allure Reports | |
| uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 | |
| if: always() | |
| with: | |
| github-token: ${{ github.token }} | |
| pages-branch: gh-pages | |
| mapping-json: | | |
| { | |
| "allure-results": "core", | |
| "allure-results-https": "core_https" | |
| } |