Skip to content

Commit

Permalink
Remove src/Symfony/ as the default value, improve the description
Browse files Browse the repository at this point in the history
  • Loading branch information
alexislefebvre committed Aug 5, 2022
1 parent fcbec12 commit c7f13b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@
"docker-build": "docker build --tag symfony-tests .docker/",
"docker-run": "docker run --rm --tty --user $(id --user):$(id --group) --volume $(pwd):/symfony symfony-tests",
"docker-composer": "@docker-run env COMPOSER_ROOT_VERSION=6.2.x-dev composer update",
"docker-tests": "@docker-run ./phpunit src/Symfony/"
"docker-tests": "@docker-run ./phpunit"
},
"scripts-descriptions": {
"docker-build": "Build the Docker image",
"docker-run": "Base command to run Docker",
"docker-composer": "Install dependencies through Composer",
"docker-tests": "Run tests, you can pass arguments, e.g. “composer docker-tests -- --debug src/Symfony/Component/Yaml/”."
"docker-tests": "Run tests, you should pass arguments, e.g. “composer docker-tests src/Symfony/Component/Yaml/” for testing a specific folder or “composer docker-tests src/Symfony/” to run the whole test suite in parallel. Options for PHPUnit must be prepend with --, e.g. “composer docker-tests -- --verbose --debug src/Symfony/Component/Yaml/”"
},
"repositories": [
{
Expand Down

0 comments on commit c7f13b0

Please sign in to comment.