[TOOLS][TESTS] Adjust configuration for testing environment
This commit is contained in:
parent
a49ee453ab
commit
d2020eb7d8
|
@ -3,4 +3,4 @@ KERNEL_CLASS='App\Kernel'
|
|||
APP_SECRET='$ecretf0rt3st'
|
||||
SYMFONY_DEPRECATIONS_HELPER=999999
|
||||
PANTHER_APP_ENV=panther
|
||||
DATABASE_URL=postgresql://postgres:password@db:54320/social
|
||||
DATABASE_URL=postgresql://postgres:password@db:5432/social
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
if /var/www/social/bin/phpunit --coverage-html .test_coverage_report; then
|
||||
cd /var/www/social || exit 65
|
||||
|
||||
yes yes | php bin/console doctrine:fixtures:load || exit 65
|
||||
|
||||
if bin/phpunit --coverage-html .test_coverage_report; then
|
||||
exit 64
|
||||
else
|
||||
exit 65
|
||||
|
|
|
@ -22,8 +22,6 @@ services:
|
|||
|
||||
db:
|
||||
image: postgres:alpine
|
||||
ports:
|
||||
- 54320:5432
|
||||
environment:
|
||||
- PGDATA=/var/lib/postgres/data
|
||||
env_file:
|
||||
|
@ -34,8 +32,6 @@ services:
|
|||
redis:
|
||||
image: redis:alpine
|
||||
tty: false
|
||||
ports:
|
||||
- 63790:6379
|
||||
|
||||
volumes:
|
||||
database:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOCIAL_DBMS=postgres
|
||||
SOCIAL_DB=social
|
||||
SOCIAL_DB=test
|
||||
SOCIAL_USER=postgres
|
||||
SOCIAL_PASSWORD=password
|
||||
SOCIAL_DOMAIN=social.localhost
|
||||
|
|
Loading…
Reference in New Issue
Block a user