Add PostgreSQL password for the 'postgres' user when runs on Jenkins

This commit is contained in:
Francis ANDRE 2019-12-22 19:03:37 +01:00
parent 2b06b60309
commit baa332ef89

View File

@ -66,6 +66,10 @@ std::string PostgreSQLTest::getPass(){
{ {
return "Password12!"; return "Password12!";
} }
else if (Environment::has("JENKINS_HOME"))
{
return "postgres";
}
else else
{ {
return "poco"; return "poco";