File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,8 @@ jobs:
121121 POSTGRES_PASSWORD : passw0rd
122122 POSTGRES_DB : circle_test
123123 - image : cimg/mariadb:10.11.2
124+ environment :
125+ MYSQL_ROOT_PASSWORD : passw0rd
124126 - image : cimg/redis:5.0.14
125127 - image : rabbitmq:3.9.13
126128 - image : mongo:4.2.3
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ services:
2727 environment :
2828 MYSQL_DATABASE : ' circle_test'
2929 MYSQL_USER : ' root'
30- MYSQL_PASSWORD : ' '
31- MYSQL_ALLOW_EMPTY_PASSWORD : ' yes'
32- MYSQL_ROOT_PASSWORD : ' '
30+ MYSQL_ROOT_PASSWORD : passw0rd
3331 MYSQL_ROOT_HOST : ' %'
3432 volumes :
3533 - ./tests/config/database/mysql/conf.d/mysql.cnf:/etc/mysql/conf.d/mysql.cnf:Z
Original file line number Diff line number Diff line change 3131testenv ['mysql_port' ] = int (os .environ .get ('MYSQL_PORT' , '3306' ))
3232testenv ['mysql_db' ] = os .environ .get ('MYSQL_DB' , 'circle_test' )
3333testenv ['mysql_user' ] = os .environ .get ('MYSQL_USER' , 'root' )
34- testenv ['mysql_pw' ] = os .environ .get ('MYSQL_PW ' , '' )
34+ testenv ['mysql_pw' ] = os .environ .get ('MYSQL_ROOT_PASSWORD ' , 'passw0rd ' )
3535
3636"""
3737PostgreSQL Environment
You can’t perform that action at this time.
0 commit comments