mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 08:10:56 +00:00
a11e3f69c3
* Add support for coveralls.io
* Generate coverage report only on php 7.2 build
* Fix osx travis build and move tools to bin dir
* Update php version badge
* Fix travis conditional statement
* Fix travis conditional statement
* 🤦 fix bin path
5 lines
123 B
Bash
Executable File
5 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
echo "Run PHPUnit with code coverage"
|
|
bin/phpunit --coverage-html .coverage
|
|
google-chrome .coverage/index.html
|