ci: support downstream erpnext migration within exception code path (#28081)
This commit is contained in:
parent
788f71e259
commit
d6fb73aa3d
1 changed files with 3 additions and 0 deletions
|
|
@ -102,6 +102,9 @@ class ParallelTestRunner:
|
|||
if hasattr(module, "test_dependencies"):
|
||||
for doctype in module.test_dependencies:
|
||||
make_test_records(doctype, commit=True)
|
||||
if hasattr(module, "EXTRA_TEST_RECORD_DEPENDENCIES"):
|
||||
for doctype in module.EXTRA_TEST_RECORD_DEPENDENCIES:
|
||||
make_test_records(doctype, commit=True)
|
||||
|
||||
if os.path.basename(os.path.dirname(path)) == "doctype":
|
||||
# test_data_migration_connector.py > data_migration_connector.json
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue