Logging improvements (#2030) #350
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: Python Smoke Tests | |
| on: | |
| push: | |
| branches: | |
| - "**/main" # match branches like feature/main | |
| - "main" # match the main branch | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| branches: | |
| - "**/main" | |
| - "main" | |
| paths-ignore: | |
| - "**/*.md" | |
| - ".semversioner/**" | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| # Only run the for the latest commit | |
| cancel-in-progress: true | |
| jobs: | |
| python-ci: | |
| # skip draft PRs | |
| if: github.event.pull_request.draft == false | |
| strategy: | |
| matrix: | |
| python-version: ["3.10"] | |
| os: [ubuntu-latest, windows-latest] | |
| fail-fast: false # Continue running all jobs even if one fails | |
| env: | |
| DEBUG: 1 | |
| GRAPHRAG_LLM_TYPE: "azure_openai_chat" | |
| GRAPHRAG_EMBEDDING_TYPE: "azure_openai_embedding" | |
| GRAPHRAG_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| GRAPHRAG_API_BASE: ${{ secrets.GRAPHRAG_API_BASE }} | |
| GRAPHRAG_API_VERSION: ${{ secrets.GRAPHRAG_API_VERSION }} | |
| GRAPHRAG_LLM_DEPLOYMENT_NAME: ${{ secrets.GRAPHRAG_LLM_DEPLOYMENT_NAME }} | |
| GRAPHRAG_EMBEDDING_DEPLOYMENT_NAME: ${{ secrets.GRAPHRAG_EMBEDDING_DEPLOYMENT_NAME }} | |
| GRAPHRAG_LLM_MODEL: ${{ secrets.GRAPHRAG_LLM_MODEL }} | |
| GRAPHRAG_EMBEDDING_MODEL: ${{ secrets.GRAPHRAG_EMBEDDING_MODEL }} | |
| # We have Windows + Linux runners in 3.10, so we need to divide the rate limits by 2 | |
| GRAPHRAG_LLM_TPM: 200_000 # 400_000 / 2 | |
| GRAPHRAG_LLM_RPM: 1_000 # 2_000 / 2 | |
| GRAPHRAG_EMBEDDING_TPM: 225_000 # 450_000 / 2 | |
| GRAPHRAG_EMBEDDING_RPM: 1_000 # 2_000 / 2 | |
| # Azure AI Search config | |
| AZURE_AI_SEARCH_URL_ENDPOINT: ${{ secrets.AZURE_AI_SEARCH_URL_ENDPOINT }} | |
| AZURE_AI_SEARCH_API_KEY: ${{ secrets.AZURE_AI_SEARCH_API_KEY }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: changes | |
| with: | |
| filters: | | |
| python: | |
| - 'graphrag/**/*' | |
| - 'uv.lock' | |
| - 'pyproject.toml' | |
| - '**/*.py' | |
| - '**/*.toml' | |
| - '**/*.ipynb' | |
| - '.github/workflows/python*.yml' | |
| - 'tests/smoke/**/*' | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| uv sync --extra dev | |
| uv pip install gensim | |
| - name: Build | |
| run: | | |
| uv build | |
| - name: Install and start Azurite | |
| shell: bash | |
| run: | | |
| npm install -g azurite | |
| azurite --silent --skipApiVersionCheck --location /tmp/azurite --debug /tmp/azurite-debug.log & | |
| - name: Smoke Test | |
| if: steps.changes.outputs.python == 'true' | |
| run: | | |
| uv run poe test_smoke | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: smoke-test-artifacts-${{ matrix.python-version }}-${{ runner.os }} | |
| path: tests/fixtures/* |