Skip to content

Commit

Permalink
Merge pull request #302 from mathiasgrimm/fix-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro authored Dec 28, 2024
2 parents 6602f63 + ae23f78 commit 80cfa3f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
2 changes: 1 addition & 1 deletion optimizing-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Finally, it's often useful to focus solely on your test suite's failures. To do

## Parallel Testing

> Parallel testing in Pest 2 now runs up to 80% faster. This impressive result was only possible thanks to a complete rebuild of the parallel test core system. The new core incorporates advanced techniques for process reuse between test case runs.
> In Pest 2, Parallel testing achieved a significant milestone, running up to 80% faster than before. This remarkable improvement was the result of a complete rebuild of the parallel test core system, which introduced advanced techniques for process reuse between test case runs. While Pest 3 bring further innovations, this upgrade in Pest 2 marked a turning point for parallel testing performance.
By default, Pest executes your tests sequentially within a single process. However, you can significantly decrease the time needed to run your tests by utilizing the `--parallel` option to run tests concurrently across multiple processes.

Expand Down
2 changes: 1 addition & 1 deletion support-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Pest adheres to semantic versioning principles, where the version number `x.y.z`
- When adding new non-breaking features or improvements, the `y` number is incremented (e.g., 3.10.2 to 3.12.0).
- When introducing breaking changes, the `x` number is incremented (e.g., 3.10.2 to 4.0.0).

As maintainers of testing frameworks, we take the matter of breaking changes very seriously. Therefore, we always attempt to deliver incredible and robust new features without causing any disruption to the community's test suites. This is precisely why upgrading from Pest 1 to Pest 2 merely required updating your composer.json file, and we assure you that the process will be just as seamless when Pest v3 is released.
As maintainers of testing frameworks, we take breaking changes very seriously. Our goal is to deliver robust, cutting-edge features without disrupting the community's test suites. This commitment is why upgrading from Pest 1 to Pest 2 was as simple as updating your composer.json file. Similarly, the transition to Pest 3 has been designed to be just as seamless, ensuring an effortless upgrade experience for our users.

----

Expand Down
2 changes: 1 addition & 1 deletion upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ We make an effort to document every potential breaking change, but some of these

> Likelihood Of Impact: High
Pest 2 now requires PHP 8.1.0 or greater. To start migrating from Pest 1 to Pest 2, update the `pestphp/pest` dependency to `^2.0` in your application's `composer.json` file.
Pest 2 requires PHP 8.1.0 or greater. To start migrating from Pest 1 to Pest 2, update the `pestphp/pest` dependency to `^2.0` in your application's `composer.json` file.

```diff
- "pestphp/pest": "^1.22",
Expand Down

0 comments on commit 80cfa3f

Please sign in to comment.