There was an error while loading. Please reload this page.
1 parent fed55b9 commit 3528e83Copy full SHA for 3528e83
2 files changed
.github/workflows/test.yml
@@ -48,7 +48,6 @@ jobs:
48
sudo systemctl start postgresql
49
sudo -u postgres psql -c "SELECT version();"
50
sudo -u postgres psql -tAc "SHOW port;"
51
- sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
52
sudo -u postgres createdb golden_axe_test
53
54
- name: Wait for Postgres
shared/src/pg.rs
@@ -47,7 +47,7 @@ pub mod test {
47
const MAX_AGE: Duration = Duration::from_secs(300);
pub async fn new(schema: &str) -> Pool {
- let admin_db_url = "postgres://postgres:postgres@localhost:5432/golden_axe_test";
+ let admin_db_url = "postgres://postgres:@localhost:5432/golden_axe_test";
let admin = super::new_pool(admin_db_url, 1).unwrap();
cleanup_old_dbs(&admin).await;
0 commit comments