#!/bin/bash
## Description: Run PHPUnit with text coverage summary (pcov)
## Usage: coverage
## Example: ddev coverage

APP_ENV=test bin/phpunit --coverage-text
