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

@@ -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")