mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
5 lines
123 B
Bash
5 lines
123 B
Bash
|
#!/bin/bash
|
||
|
echo "Run PHPUnit with code coverage"
|
||
|
bin/phpunit --coverage-html .coverage
|
||
|
google-chrome .coverage/index.html
|