(project)
| 401 | # |
| 402 | @cached |
| 403 | def should_clean_project(project): |
| 404 | |
| 405 | if project in project_targets: |
| 406 | return True |
| 407 | else: |
| 408 | |
| 409 | parent = get_manager().projects().attribute(project, "parent-module") |
| 410 | if parent and parent != "user-config": |
| 411 | return should_clean_project(parent) |
| 412 | else: |
| 413 | return False |
| 414 | |
| 415 | ################################################################################ |
| 416 | # |
no test coverage detected