feature/#524-pipline #15

Merged
on.nemtina merged 85 commits from feature/#524-pipline into master 2024-12-23 16:39:46 +05:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit e991992ab3 - Show all commits

View File

@ -14,7 +14,7 @@ jobs:
image: postgres
# Provide the password for postgres
env:
POSTGRES_HOST: postgres
POSTGRES_DB: persistence
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started

View File

@ -24,7 +24,8 @@ public class WebAppFactoryFixture : WebApplicationFactory<Program>
config.AddJsonFile("appsettings.Tests.json");
var dbConnection = config.Build().GetSection("DbConnection").Get<DbConnection>()!;
connectionString = dbConnection.GetConnectionString();
//connectionString = dbConnection.GetConnectionString();
connectionString = "postgres://postgres:postgres@localhost:5442/persistence";
});
builder.ConfigureServices(services =>