(profiles)
| 44 | |
| 45 | |
| 46 | def are_profiles_broken(profiles) -> bool: |
| 47 | return not all(isinstance(profile, (float, int)) for profile in profiles) |
| 48 | |
| 49 | |
| 50 | def physical_runtime_profiler(function, test_inputs) -> float: |
no outgoing calls
no test coverage detected