(name, deps)
| 48 | |
| 49 | |
| 50 | def check_deps(name, deps): |
| 51 | stamp_file = get_stamp_file(name) |
| 52 | if not os.path.exists(stamp_file): |
| 53 | return False |
| 54 | for dep in deps: |
| 55 | dep = utils.path_from_root(dep) |
| 56 | if os.path.getmtime(dep) > os.path.getmtime(stamp_file): |
| 57 | return False |
| 58 | return True |
| 59 | |
| 60 | |
| 61 | def check(): |
no test coverage detected