Skip to content

Commit bf4c053

Browse files
committed
fix(ci)
1 parent 11be966 commit bf4c053

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ os: Visual Studio 2017
44
environment:
55
POSTGRES_PORT: tcp://localhost:5432
66
POSTGRES_ENV_POSTGRES_USER: postgres
7-
POSTGRES_ENV_POSTGRES_PASSWORD:
7+
POSTGRES_ENV_POSTGRES_PASSWORD: Password12!
88
POSTGRES_ENV_POSTGRES_DB: JsonApiDotNetCoreExample
99
PGUSER: postgres
10-
PGPASSWORD:
10+
PGPASSWORD: Password12!
11+
Data:DefaultConnection: "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password=Password12!"
1112

1213
pull_requests:
1314
do_not_increment_build_number: true
@@ -28,7 +29,7 @@ services:
2829
- postgresql
2930

3031
build_script:
31-
- ps: createdb -U postgres -w JsonApiDotNetCoreExample
32+
- ps: createdb JsonApiDotNetCoreExample
3233
- ps: dotnet --version
3334
- ps: .\Build.ps1
3435

test/NoEntityFrameworkTests/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Data": {
3-
"DefaultConnection": "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password=postgres"
3+
"DefaultConnection": "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password="
44
},
55
"Logging": {
66
"IncludeScopes": false,

0 commit comments

Comments
 (0)