Use DD_TRACE_ENABLED
to disable ddtrace on Windows when using process_isolation
#294
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
name: PR All | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- datadog_checks_base/datadog_checks/** | |
- datadog_checks_dev/datadog_checks/dev/*.py | |
- "!datadog_checks_base/datadog_checks/base/data/agent_requirements.in" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: ./.github/workflows/test-all.yml | |
with: | |
repo: core | |
# Options | |
standard: true | |
test-py2: true | |
secrets: inherit | |
save-event: | |
needs: | |
- test | |
if: success() || failure() | |
uses: ./.github/workflows/save-event.yml | |
submit-traces: | |
needs: | |
- test | |
if: success() || failure() | |
uses: ./.github/workflows/submit-traces.yml | |
secrets: inherit |