Skip to content

Daily Flaky Tests (every 8 hours) #427

Daily Flaky Tests (every 8 hours)

Daily Flaky Tests (every 8 hours) #427

Workflow file for this run

name: Daily Flaky Tests (every 8 hours)
on:
workflow_dispatch:
schedule:
# 4 AM, 12 PM, 8 PM UTC
- cron: "0 4,12,20 * * *"
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 flaky'
secrets: inherit
publish-test-results:

Check failure on line 32 in .github/workflows/flaky-tests.yml

View workflow run for this annotation

GitHub Actions / Daily Flaky Tests (every 8 hours)

Invalid workflow file

The workflow is not valid. .github/workflows/flaky-tests.yml (Line: 32, Col: 3): Error calling workflow 'DataDog/integrations-core/.github/workflows/test-results-master.yml@76ff273f2e40c3424e7ef85729e3c8892b09051e'. 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