Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/en/code_coverage/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,15 @@
</code>
</pre>
{{% /tab %}}
{{% tab "Azure Pipelines" %}}
<code class="language-yaml" data-lang="yaml">
- script: datadog-ci coverage upload --format=clover coverage/clover.xml

Check warning on line 382 in content/en/code_coverage/setup.md

View workflow job for this annotation

GitHub Actions / vale

Datadog.words_case_sensitive

Use 'Datadog' instead of 'datadog'.
displayName: 'Upload coverage to Datadog'
env:
DD_API_KEY: $(DD_API_KEY)
DD_SITE: 'datadoghq.com'
</code>
{{% /tab %}}
{{< /tabs >}}

The command recursively searches the specified directories for supported coverage report files, so specifying the current directory (`.`) is usually sufficient.
Expand Down