kev.g
kev.g

Reputation: 361

PHPUnit does nothing Gitlab-ci

When Gitlab-ci execute the script : php vendor/phpunit/phpunit --colors --verbose --configuration phpunit.xml

PHPUnit seems to do nothing this is the output from Gitlabci :

$ php vendor/phpunit/phpunit --colors --verbose --configuration phpunit.xml
Job succeeded

I've tried with no option for PHPUnit and it's still the same i don't understand why, it's working properly on my local

I'm working with the framework Laravel

Upvotes: 0

Views: 364

Answers (1)

Jakub Zalas
Jakub Zalas

Reputation: 36191

If you installed phpunit with composer and haven't changed the bin-dir configuration, the path to phpunit is vendor/bin/phpunit:

php ./vendor/bin/phpunit

You should also be able to simply call the phpunit script directly:

./vendor/bin/phpunit

Assuming your current working directory is the root of your project.

Upvotes: 1

Related Questions