From fe972d0abd0f674ec960cea31989c89a6ca81a36 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Sat, 1 Nov 2025 17:02:05 +0530 Subject: [PATCH] feat(ci): add postgres.json config file for Postgresql tests --- .github/helper/db/postgres.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/helper/db/postgres.json diff --git a/.github/helper/db/postgres.json b/.github/helper/db/postgres.json new file mode 100644 index 0000000000..73a22b6d49 --- /dev/null +++ b/.github/helper/db/postgres.json @@ -0,0 +1,18 @@ +{ + "db_host": "127.0.0.1", + "db_port": 5432, + "db_name": "test_frappe", + "db_password": "test_frappe", + "db_type": "postgres", + "allow_tests": true, + "auto_email_id": "test@example.com", + "mail_server": "localhost", + "mail_port": 2525, + "mail_login": "test@example.com", + "mail_password": "test", + "admin_password": "admin", + "root_login": "postgres", + "root_password": "travis", + "host_name": "http://test_site:8000", + "server_script_enabled": true +} \ No newline at end of file