Run tests with 1GB memory by default
This commit is contained in:
parent
23ead7732a
commit
6f8fd53599
1 changed files with 2 additions and 2 deletions
4
dusk.sh
4
dusk.sh
|
|
@ -32,7 +32,7 @@ for TEST_CLASS in $GENERIC_TESTS; do
|
|||
php artisan ninja:create-single-account &> /dev/null
|
||||
|
||||
echo "$ php artisan dusk $TEST_CLASS"
|
||||
php artisan dusk ${@:2} --stop-on-error --stop-on-failure $TEST_CLASS || exit 1
|
||||
php -d memory_limit=1G artisan dusk ${@:2} --stop-on-error --stop-on-failure $TEST_CLASS || exit 1
|
||||
|
||||
echo "=========================================="
|
||||
done || exit 1
|
||||
|
|
@ -56,7 +56,7 @@ for TEST_CLASS in $GATEWAY_TESTS; do
|
|||
php artisan ninja:create-single-account &> /dev/null
|
||||
|
||||
echo "$ php artisan dusk $TEST_CLASS"
|
||||
php artisan dusk ${@:2} --stop-on-error --stop-on-failure $TEST_CLASS || exit 1
|
||||
php -d memory_limit=1G artisan dusk ${@:2} --stop-on-error --stop-on-failure $TEST_CLASS || exit 1
|
||||
|
||||
echo "=========================================="
|
||||
done || exit 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue