[TOOLS][TESTS] Adjust configuration for testing environment

This commit is contained in:
Hugo Sales 2021-05-05 12:15:05 +00:00
parent a49ee453ab
commit d2020eb7d8
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
4 changed files with 7 additions and 7 deletions

View File

@ -3,4 +3,4 @@ KERNEL_CLASS='App\Kernel'
APP_SECRET='$ecretf0rt3st' APP_SECRET='$ecretf0rt3st'
SYMFONY_DEPRECATIONS_HELPER=999999 SYMFONY_DEPRECATIONS_HELPER=999999
PANTHER_APP_ENV=panther PANTHER_APP_ENV=panther
DATABASE_URL=postgresql://postgres:password@db:54320/social DATABASE_URL=postgresql://postgres:password@db:5432/social

View File

@ -1,6 +1,10 @@
#!/bin/sh #!/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 exit 64
else else
exit 65 exit 65

View File

@ -22,8 +22,6 @@ services:
db: db:
image: postgres:alpine image: postgres:alpine
ports:
- 54320:5432
environment: environment:
- PGDATA=/var/lib/postgres/data - PGDATA=/var/lib/postgres/data
env_file: env_file:
@ -34,8 +32,6 @@ services:
redis: redis:
image: redis:alpine image: redis:alpine
tty: false tty: false
ports:
- 63790:6379
volumes: volumes:
database: database:

View File

@ -1,5 +1,5 @@
SOCIAL_DBMS=postgres SOCIAL_DBMS=postgres
SOCIAL_DB=social SOCIAL_DB=test
SOCIAL_USER=postgres SOCIAL_USER=postgres
SOCIAL_PASSWORD=password SOCIAL_PASSWORD=password
SOCIAL_DOMAIN=social.localhost SOCIAL_DOMAIN=social.localhost