You are here

unit.sh in Realistic Dummy Content 7.2

Same filename and directory in other branches
  1. 8.2 developer/lib/unit.sh
#!/bin/bash
#
# Run PHPUnit tests.
#
set -e

BASEPATH="$(pwd)"

cd "$BASEPATH"/.. && docker run -v "$(pwd)":/app phpunit/phpunit:5.7.12 \
  --group realistic_dummy_content

File

developer/lib/unit.sh
View source
  1. #!/bin/bash
  2. #
  3. # Run PHPUnit tests.
  4. #
  5. set -e
  6. BASEPATH="$(pwd)"
  7. cd "$BASEPATH"/.. && docker run -v "$(pwd)":/app phpunit/phpunit:5.7.12 \
  8. --group realistic_dummy_content