Skip to content

Commit 6cd0063

Browse files
committed
chore(ci+tests): Set PostgreSQL password.
Following the necessary requirements for the most recent versions of the PostgreSQL, let's set a simple and dummy password. Signed-off-by: Paulo Vital <[email protected]>
1 parent b03f6bb commit 6cd0063

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
- image: cimg/postgres:9.6.24
119119
environment:
120120
POSTGRES_USER: root
121-
POSTGRES_PASSWORD: ''
121+
POSTGRES_PASSWORD: passw0rd
122122
POSTGRES_DB: circle_test
123123
- image: cimg/mariadb:10.11.2
124124
- image: cimg/redis:5.0.14
@@ -144,7 +144,7 @@ jobs:
144144
- image: cimg/postgres:9.6.24
145145
environment:
146146
POSTGRES_USER: root
147-
POSTGRES_PASSWORD: ''
147+
POSTGRES_PASSWORD: passw0rd
148148
POSTGRES_DB: circle_test
149149
- image: cimg/mariadb:10.11.2
150150
- image: cimg/redis:5.0.14
@@ -169,7 +169,7 @@ jobs:
169169
- image: cimg/postgres:9.6.24
170170
environment:
171171
POSTGRES_USER: root
172-
POSTGRES_PASSWORD: ''
172+
POSTGRES_PASSWORD: passw0rd
173173
POSTGRES_DB: circle_test
174174
- image: cimg/mariadb:10.11.2
175175
- image: cimg/redis:5.0.14
@@ -194,7 +194,7 @@ jobs:
194194
- image: cimg/postgres:9.6.24
195195
environment:
196196
POSTGRES_USER: root
197-
POSTGRES_PASSWORD: ''
197+
POSTGRES_PASSWORD: passw0rd
198198
POSTGRES_DB: circle_test
199199
- image: cimg/mariadb:10.11.2
200200
- image: cimg/redis:5.0.14
@@ -220,7 +220,7 @@ jobs:
220220
- image: cimg/postgres:9.6.24
221221
environment:
222222
POSTGRES_USER: root
223-
POSTGRES_PASSWORD: ''
223+
POSTGRES_PASSWORD: passw0rd
224224
POSTGRES_DB: circle_test
225225
- image: cimg/mariadb:10.11.2
226226
- image: cimg/redis:5.0.14
@@ -246,7 +246,7 @@ jobs:
246246
- image: cimg/postgres:9.6.24
247247
environment:
248248
POSTGRES_USER: root
249-
POSTGRES_PASSWORD: ''
249+
POSTGRES_PASSWORD: passw0rd
250250
POSTGRES_DB: circle_test
251251
- image: cimg/mariadb:10.11.2
252252
- image: cimg/redis:5.0.14

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ services:
4545
- 5432:5432
4646
environment:
4747
POSTGRES_USER: root
48-
POSTGRES_PASSWORD: ''
48+
POSTGRES_PASSWORD: passw0rd
4949
POSTGRES_DB: circle_test
5050

5151
rabbitmq:

tests/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
testenv['postgresql_port'] = int(os.environ.get('POSTGRES_PORT', '5432'))
4343
testenv['postgresql_db'] = os.environ.get('POSTGRES_DB', 'circle_test')
4444
testenv['postgresql_user'] = os.environ.get('POSTGRES_USER', 'root')
45-
testenv['postgresql_pw'] = os.environ.get('POSTGRES_PW', '')
45+
testenv['postgresql_pw'] = os.environ.get('POSTGRES_PW', 'passw0rd')
4646

4747
"""
4848
Redis Environment

0 commit comments

Comments
 (0)