Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1b55207

Browse files
committedApr 6, 2024·
Disable Rector for tests
1 parent 6fe7d8e commit 1b55207

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎rector.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
return static function (RectorConfig $rectorConfig): void {
1212
$rectorConfig->paths([
1313
__DIR__ . '/src',
14-
__DIR__ . '/tests',
14+
/**
15+
* Disabled ./tests directory due to different branches with main package when testing
16+
*/
17+
// __DIR__ . '/tests',
1518
]);
1619

1720
// register a single rule

0 commit comments

Comments
 (0)
Please sign in to comment.