Skip to content

Commit 9837294

Browse files
committed
update ci psql deps
1 parent dfad288 commit 9837294

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Tests/PostgreSQLTests/PostgreSQLConnectionTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ extension PostgreSQLConnection {
360360
let client = try PostgreSQLConnection.connect(on: group) { error in
361361
XCTFail("\(error)")
362362
}.wait()
363-
_ = try client.authenticate(username: "postgres").wait()
363+
_ = try client.authenticate(username: "vapor_username", database: "vapor_database", password: "vapor_password").wait()
364364
return client
365365
}
366366
}

circle.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- image: norionomura/swift:swift-4.1-branch
1414
- image: circleci/postgres:latest
1515
environment:
16-
POSTGRES_USER: postgres
17-
POSTGRES_DB: postgres
18-
POSTGRES_PASSWORD: ""
16+
POSTGRES_USER: vapor_username
17+
POSTGRES_DB: vapor_database
18+
POSTGRES_PASSWORD: vapor_password
1919
steps:
2020
- run:
2121
name: Update APT
@@ -39,9 +39,9 @@ jobs:
3939
- image: norionomura/swift:swift-4.1-branch
4040
- image: circleci/postgres:latest
4141
environment:
42-
POSTGRES_USER: postgres
43-
POSTGRES_DB: postgres
44-
POSTGRES_PASSWORD: ""
42+
POSTGRES_USER: vapor_username
43+
POSTGRES_DB: vapor_database
44+
POSTGRES_PASSWORD: vapor_password
4545
steps:
4646
- run:
4747
name: Update APT

0 commit comments

Comments
 (0)