opentelemetry-sdk: make test_force_flush_late_by_timeout less flaky on pypy/windows #241
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
| # Do not edit this file. | |
| # This file is generated automatically by executing tox -e generate-workflows | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| misc: | |
| uses: ./.github/workflows/misc.yml | |
| lint: | |
| uses: ./.github/workflows/lint.yml | |
| tests: | |
| uses: ./.github/workflows/test.yml | |
| contrib: | |
| uses: open-telemetry/opentelemetry-python-contrib/.github/workflows/core_contrib_test.yml@main | |
| with: | |
| CORE_REPO_SHA: ${{ github.sha }} | |
| CONTRIB_REPO_SHA: ${{ github.event_name == 'pull_request' && ( | |
| contains(github.event.pull_request.labels.*.name, 'prepare-release') && github.event.pull_request.head.ref || | |
| contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref || | |
| 'main' | |
| ) || 'main' }} | |
| check: | |
| if: always() | |
| needs: | |
| - misc | |
| - lint | |
| - tests | |
| - contrib | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |