mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-03-13 03:00:50 +00:00
- Also made all SQLite tests skippable if the extension is not loaded - Fixed format of ETags in test server - Passed any CLI arguments to PHPUnit in the test runner
7 lines
No EOL
247 B
Bash
Executable file
7 lines
No EOL
247 B
Bash
Executable file
#! /bin/sh
|
|
base=`dirname "$0"`
|
|
php -n -S localhost:8000 "$base/server.php" >/dev/null &
|
|
php "$base/../vendor/phpunit/phpunit/phpunit" -c "$base/phpunit.xml" $*
|
|
sleep 1s
|
|
pid=`lsof -n -i:8000 | grep -Eo "php\s+[0-9]+" | grep -Eo "[0-9]+"`
|
|
kill $pid |