Update documentation to favor running PHPUnit directly

This commit is contained in:
Yassine Guedidi 2024-01-09 08:10:51 +01:00
parent 369e7b6e04
commit bd537a54fe

View file

@ -52,8 +52,9 @@ All pull requests need to pass the tests and the code needs match the style guid
To run the tests locally run:
- when testing using Docker: `docker-compose run --rm php make test`
- otherwise: `make test`
- when testing using Docker: `docker-compose run --rm php bin/phpunit` (or `docker-compose run --rm php make test` if you
prefer using `make`)
- otherwise: `bin/phpunit` (or `make test`)
To run the PHP formatter: