Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/detection).
4 changes: 2 additions & 2 deletions src/content/docs/test-insights/test-frameworks/cypress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

<IntegrationLogo src={cypressLogo} alt="Cypress logo" />

Expand Down Expand Up @@ -81,8 +82,7 @@ After pushing these changes:
2. Cypress generates JUnit files.
3. The Mergify CI action uploads that file to Test Insights.

You can then see your test results, including failures and flaky tests,
directly in the Test Insights dashboard.
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/golang.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

<IntegrationLogo src={golangLogo} alt="Golang logo" />

Expand Down Expand Up @@ -81,9 +82,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/jest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

<IntegrationLogo src={jestLogo} alt="Jest logo" />

Expand Down Expand Up @@ -105,9 +106,7 @@ After pushing these changes:
2. A JUnit report (`junit.xml`) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/test-insights/test-frameworks/junit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your JUnit tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -91,6 +92,7 @@ For Gradle projects:
```yaml
- name: Run JUnit Tests and Generate Report
id: tests
continue-on-error: true
run: ./gradlew test
```

Expand Down Expand Up @@ -131,9 +133,7 @@ After pushing these changes:
2. JUnit XML reports are generated by Maven/Gradle.
3. The Mergify CI action uploads the reports to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/test-insights/test-frameworks/minitest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your Minitest tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -142,6 +143,7 @@ Using `minitest-reporters` approach:
```yaml
- name: Run Minitest Tests and Generate JUnit Report
id: tests
continue-on-error: true
run: bundle exec rake test
```

Expand Down Expand Up @@ -169,9 +171,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/mstest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your MSTest tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -115,9 +116,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/nunit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your NUnit tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -134,9 +135,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/pest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your Pest tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -126,9 +127,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/phpunit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your PHPUnit tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -113,9 +114,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/rust.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

<IntegrationLogo src={rustLogo} alt="Rust logo" />

Expand Down Expand Up @@ -132,9 +133,7 @@ After pushing these changes:
2. A JUnit report (junit.xml) is generated.
3. The Mergify CI action uploads the report to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down
5 changes: 2 additions & 3 deletions src/content/docs/test-insights/test-frameworks/testng.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BuildkiteCIUploadStep from "../../../../components/BuildkiteCIUploadStep.
import BuildkiteCIUploadStepMatrix from "../../../../components/BuildkiteCIUploadStepMatrix.astro"
import BuildkiteCIQuarantineSetup from "./_buildkite_mergify_ci_quarantine_setup.mdx"
import MergifyCliUploadStep from "../../../../components/MergifyCliUploadStep.astro"
import ReviewInTestInsights from "./_review-in-test-insights.mdx"

This guide shows how to generate JUnit reports from your TestNG tests and upload
them to **Test Insights** using your CI workflow.
Expand Down Expand Up @@ -146,9 +147,7 @@ After pushing these changes:
2. JUnit-compatible XML reports are generated.
3. The Mergify CI action uploads the reports to Test Insights.

You can then review your test results, including any failures or flaky tests,
directly in the [Test Insights
dashboard](https://dashboard.mergify.com/test-insights/jobs).
<ReviewInTestInsights />

## Troubleshooting Tips

Expand Down