File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed
Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,15 @@ services:
4141 - MDB_DATABASE=logtodb
4242 - MDB_HOST=mongo
4343 - MDB_PORT=27017
44+ entrypoint : bash -c "
45+ cd /var/testing &&
46+ composer install --no-interaction &&
47+ dockerize -wait tcp://mariadb:3306 -timeout 1m &&
48+ ./vendor/bin/phpunit --coverage-clover coverage.xml &&
49+ curl -Os https://uploader.codecov.io/latest/linux/codecov &&
50+ chmod +x codecov &&
51+ ./codecov
52+ "
4453
4554networks:
4655 laravel-log-to-db-testing:
Original file line number Diff line number Diff line change 11#! /bin/bash
22export DEBIAN_FRONTEND=noninteractive
3+ bash <( cat /etc/os-release; echo ' echo ${VERSION/*, /}' )
34php -v
4- cd /var/testing && chmod +x ./runTests.sh && ./runTests.sh
5+ echo " Entrypoint/Boot actions completed... "
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments