Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Commit

Permalink
skips in downgrade configs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Sep 27, 2021
1 parent 084ec02 commit ac6d628
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,12 @@
]]);

$parameters = $containerConfigurator->parameters();
$parameters->set(Option::SKIP, ['*/Tests/*', '*/tests/*', __DIR__ . '/../../tests']);
$parameters->set(Option::SKIP, [
'*/Tests/*',
'*/tests/*',
__DIR__ . '/../../tests',
# missing "optional" dependency and never used here
'*/symfony/framework-bundle/KernelBrowser.php',
'*/symfony/http-kernel/HttpKernelBrowser.php',
]);
};
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,12 @@
]]);

$parameters = $containerConfigurator->parameters();
$parameters->set(Option::SKIP, ['*/Tests/*', '*/tests/*', __DIR__ . '/../../tests']);
$parameters->set(Option::SKIP, [
'*/Tests/*',
'*/tests/*',
__DIR__ . '/../../tests',
# missing "optional" dependency and never used here
'*/symfony/framework-bundle/KernelBrowser.php',
'*/symfony/http-kernel/HttpKernelBrowser.php',
]);
};
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
'*/Tests/*',
'*/tests/*',
__DIR__ . '/../../tests',
# missing "optional" dependency and never used here
'*/symfony/framework-bundle/KernelBrowser.php',
'*/symfony/http-kernel/HttpKernelBrowser.php',
]);
Expand Down

0 comments on commit ac6d628

Please sign in to comment.