Skip to content

Commit

Permalink
fix: appveyor postgres password for image database
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaxelr committed Aug 22, 2024
1 parent 5dd331c commit 763fcaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:

environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: 'postgres'
POSTGRES_PASSWORD: 'Password12!'
POSTGRES_DB: 'postgres'

mysql:
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/ConnectionContextTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static IEnumerable<object[]> GetConnectionData()

string postgresConnEnv = Environment.GetEnvironmentVariable("Postgres_Connection");
if (string.IsNullOrEmpty(postgresConnEnv))
postgresConnEnv = "Server=localhost;Port=5432;Database=postgres;Username=postgres;Password=Password12;";
postgresConnEnv = "Server=localhost;Port=5432;Database=postgres;Username=postgres;Password=Password12!;";

string mysqlConnEnv = Environment.GetEnvironmentVariable("MySql_Connection");
if (string.IsNullOrEmpty(mysqlConnEnv))
Expand Down

0 comments on commit 763fcaf

Please sign in to comment.