Skip to content

Mark integration tests explicitly as such. (#19105) #3627

Mark integration tests explicitly as such. (#19105)

Mark integration tests explicitly as such. (#19105) #3627

Workflow file for this run

name: Master
on:
push:
branches:
- master
jobs:
cache:
uses: ./.github/workflows/cache-shared-deps.yml
test:
needs:
- cache
uses: ./.github/workflows/test-all.yml
with:
repo: core
# Options
standard: true
# Because -m starts with a dash,
# click (the library used to build the CLI) will
# interpret it as an option, not as an argument.
# To avoid this, using -- syntax,
# which tells the command that everything following it
# should be treated as positional arguments, not options
pytest-args: '-m "not flaky"'
secrets: inherit
publish-test-results:

Check failure on line 31 in .github/workflows/master.yml

View workflow run for this annotation

GitHub Actions / Master

Invalid workflow file

The workflow is not valid. .github/workflows/master.yml (Line: 31, Col: 3): Error calling workflow 'DataDog/integrations-core/.github/workflows/test-results-master.yml@2ce92e0165aaf89ba440aa8f13ef18cf36e93937'. The nested job 'test-results' is requesting 'checks: write, contents: write, pull-requests: write', but is only allowed 'checks: none, contents: read, pull-requests: none'.
needs:
- test
if: success() || failure()
concurrency:
group: test-results
uses: ./.github/workflows/test-results-master.yml
secrets: inherit
submit-traces:
needs:
- test
if: success() || failure()
uses: ./.github/workflows/submit-traces.yml
secrets: inherit