mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-16 16:08:39 +00:00
ci(postgres): install payments app on the test site
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.
This commit is contained in:
2
.github/helper/site_config_postgres.json
vendored
2
.github/helper/site_config_postgres.json
vendored
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user