[TESTS] Add test container with Xdebug and allow for generation of coverage reports with 'make test'

This commit is contained in:
2021-05-02 12:39:32 +00:00
parent 091f4b5194
commit ee97cc5b00
7 changed files with 32 additions and 1 deletions

7
docker/testing/coverage.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
if /var/www/social/bin/phpunit --coverage-html .test_coverage_report; then
exit 64
else
exit 65
fi