test: only test erpnext doctypes
Co-authored-by: gavin <gavin18d@gmail.com>
This commit is contained in:
parent
e3ea431ef3
commit
afc81351b7
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"actions": [],
|
"actions": [],
|
||||||
"creation": "2022-02-11 11:25:05.336846",
|
"creation": "2018-02-08 10:18:48.513608",
|
||||||
"doctype": "DocType",
|
"doctype": "DocType",
|
||||||
"editable_grid": 1,
|
"editable_grid": 1,
|
||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
|
@ -9,7 +9,8 @@ from frappe.desk.form.load import getdoc
|
|||||||
class TestFormLoads(unittest.TestCase):
|
class TestFormLoads(unittest.TestCase):
|
||||||
|
|
||||||
def test_load(self):
|
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:
|
for doctype in doctypes:
|
||||||
last_doc = frappe.db.get_value(doctype, {}, "name", order_by="modified desc")
|
last_doc = frappe.db.get_value(doctype, {}, "name", order_by="modified desc")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user