Skip to content

Commit

Permalink
AbstractDBTests - remove password
Browse files Browse the repository at this point in the history
  • Loading branch information
lwih committed Dec 29, 2023
1 parent f60c95a commit bff1229
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "Release"

on:
# push:
# branches: [ "main" ]
push:
branches: [ "main" ]
release:
types: [ published ]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ abstract class AbstractDBTests {

return "jdbc:postgresql://" + container.containerIpAddress + ":" + container.getMappedPort(
PostgreSQLContainer.POSTGRESQL_PORT,
).toString() + "/testdb?user=postgres&password=postgres"
).toString() + "/testdb"
}
}
}

0 comments on commit bff1229

Please sign in to comment.