Skip to content

Commit

Permalink
Docs - Update Links to Correct circle.yml Examples (#2362)
Browse files Browse the repository at this point in the history
  • Loading branch information
qaiken authored and bahmutov committed Jan 7, 2020
1 parent 1de1961 commit 100e06e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/guides/guides/parallelization.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ The examples below are from a run of our {% url "Kitchen Sink Example" https://g
## Without parallelization
In this example, a single machine runs a job named `1x-electron`, defined in the project's {%url "circle.yml" https://github.com/cypress-io/cypress-example-kitchensink/blob/master/circle.yml %} file. Cypress runs all 19 spec files one by one alphabetically in this job. It takes **1:51** to complete all of the tests.
In this example, a single machine runs a job named `1x-electron`, defined in the project's {%url "circle.yml" https://github.com/cypress-io/cypress-example-kitchensink/blob/aabb10cc1bb9dee88e1bf28e0af5e9661427ee7a/circle.yml#L41 %} file. Cypress runs all 19 spec files one by one alphabetically in this job. It takes **1:51** to complete all of the tests.

```text
1x-electron, Machine #1
Expand Down Expand Up @@ -114,7 +114,7 @@ Notice that when adding up the spec's run times (**0:55**), they add up to less
## With parallelization
When we run the same tests with parallelization, Cypress uses its {% urlHash "balance strategy" Balance-strategy %} to order to specs to run based on the spec's previous run history. During the same CI run as above, we ran _all_ tests again, but this time with parallelization across 2 machines. This job was named `2x-electron` in the project's {%url "circle.yml" https://github.com/cypress-io/cypress-example-kitchensink/blob/master/circle.yml %} file and it finished in **59 seconds**.
When we run the same tests with parallelization, Cypress uses its {% urlHash "balance strategy" Balance-strategy %} to order to specs to run based on the spec's previous run history. During the same CI run as above, we ran _all_ tests again, but this time with parallelization across 2 machines. This job was named `2x-electron` in the project's {%url "circle.yml" https://github.com/cypress-io/cypress-example-kitchensink/blob/aabb10cc1bb9dee88e1bf28e0af5e9661427ee7a/circle.yml#L53 %} file and it finished in **59 seconds**.
```text
2x-electron, Machine #1, 9 specs 2x-electron, Machine #2, 10 specs
Expand Down

0 comments on commit 100e06e

Please sign in to comment.