[TOOLS][TESTS] Adjust configuration for testing environment

This commit is contained in:
Hugo Sales 2021-05-05 12:15:05 +00:00
rodzic a49ee453ab
commit d2020eb7d8
Podpisane przez: someonewithpc
ID klucza GPG: 7D0C7EAFC9D835A0
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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

Wyświetl plik

@ -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:

Wyświetl plik

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