test: only test erpnext doctypes

Co-authored-by: gavin <gavin18d@gmail.com>
This commit is contained in:
Ankush Menat 2022-02-21 12:49:06 +05:30
parent e3ea431ef3
commit afc81351b7
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"actions": [],
"creation": "2022-02-11 11:25:05.336846",
"creation": "2018-02-08 10:18:48.513608",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",

View File

@ -9,7 +9,8 @@ from frappe.desk.form.load import getdoc
class TestFormLoads(unittest.TestCase):
def test_load(self):
doctypes = frappe.get_all("DocType", {"istable": 0, "issingle": 0, "is_virtual": 0}, pluck="name")
erpnext_modules = frappe.get_all("Module Def", filters={"app_name": "erpnext"}, pluck="name")
doctypes = frappe.get_all("DocType", {"istable": 0, "issingle": 0, "is_virtual": 0, "module": ("in", erpnext_modules)}, pluck="name")
for doctype in doctypes:
last_doc = frappe.db.get_value(doctype, {}, "name", order_by="modified desc")