From f95e91323ea7295c7eb90662983c9fe0c373d7e0 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sun, 21 Jun 2026 15:05:11 +0530 Subject: [PATCH] ci(postgres): install payments app on the test site MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Postgres CI site only listed erpnext in install_apps, so the payments app (fetched and built by install.sh via 'bench get-app payments') was never installed on the site — leaving 'tabPayment Gateway' absent. test_payment_request (and other payment-gateway-dependent tests) then errored on Postgres with 'relation "tabPayment Gateway" does not exist', while MariaDB passed because its site_config already lists ["payments", "erpnext"]. Match that ordering for parity. --- .github/helper/site_config_postgres.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/helper/site_config_postgres.json b/.github/helper/site_config_postgres.json index c82905fea02..b01d0438940 100644 --- a/.github/helper/site_config_postgres.json +++ b/.github/helper/site_config_postgres.json @@ -13,6 +13,6 @@ "root_login": "postgres", "root_password": "travis", "host_name": "http://test_site:8000", - "install_apps": ["erpnext"], + "install_apps": ["payments", "erpnext"], "throttle_user_limit": 100 }