Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #2050

Merged
merged 3 commits into from
Sep 5, 2019
Merged

Develop #2050

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
9 changes: 9 additions & 0 deletions source/guides/dashboard/github-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,12 @@ An example of a Cypress pull-request comment can be seen below:

PR comments and failure screenshot thumbnails are optional, and can be disabled if not needed within a project's GitHub Integration settings:
{% imgTag /img/dashboard/github-integration/pr-comments-settings.png "Status checks settings" %}

# Uninstall the Cypress GitHub app

You can uninstall the Cypress GitHub app from GitHub by performing the following steps:

1. Go into your organization's **Settings** from within GitHub.
2. Click on **Installed GitHub Apps**.
3. Click **Configure** beside the Cypress app.
4. Click **Uninstall** below the "Uninstall Cypress" section.
12 changes: 9 additions & 3 deletions source/guides/references/error-messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,17 @@ Please review our {% url "parallelization" parallelization %} documentation to l

## {% fa fa-exclamation-triangle red %} Cannot parallelize tests on a stale run

You are attempting to pass the {% url "`--parallel`" command-line#cypress-run-parallel %} flag to a run that was completed over 24 hours ago.
This error is thrown when you are attempting to pass the {% url "`--parallel`" command-line#cypress-run-parallel %} flag to a run that Cypress detected was completed over 24 hours ago.

You cannot run tests on a run that has been complete for that long.
In order to uniquely identify each run during `cypress run`, Cypress attempts to read a unique identifier from your CI provider as described in our {% url "parallelization doc" parallelization#CI-Build-ID-environment-variables-by-provider %}.

Please review our {% url "parallelization" parallelization %} documentation to learn more.
You may encounter this error if Cypress is detecting the exact same CI Build ID matching a previous CI Build ID in a run that was completed over 24 hours ago. You cannot run tests on a run that has been complete for that long.
​You can see the CI Build ID that is detected for each completed run by looking at the details section at the top of your run in the {% url "Dashboard" https://on.cypress.io/dashboard %}.
​You can generate and pass in your own unique CI Build ID per run as described {% url "here" command-line#cypress-run-ci-build-id-lt-id-gt %}.

Please also review our {% url "parallelization" parallelization %} documentation to learn more.

## {% fa fa-exclamation-triangle red %} Run is not accepting any new groups

Expand Down