File: phpunit

package info (click to toggle)
symfony 2.3.21%2Bdfsg-4%2Bdeb8u3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 31,244 kB
  • ctags: 39,110
  • sloc: php: 162,667; xml: 2,839; sh: 422; sql: 246; makefile: 78
file content (12 lines) | stat: -rwxr-xr-x 440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -e

BASH_XTRACEFD=1
set -x

patch -p1 < debian/patches/DEP-8/Use-installed-class-for-DEP-8-tests.patch
patch -p1 < debian/patches/DEP-8/Tests-against-installed-classes.patch
phpunit --exclude-group online,tty,benchmark,intl-data && exit_code=0 || exit_code=$?
patch -Rp1 < debian/patches/DEP-8/Tests-against-installed-classes.patch
patch -Rp1 < debian/patches/DEP-8/Use-installed-class-for-DEP-8-tests.patch
exit $exit_code