Return a list of modules that appear to be missing. Use any_missing_maybe() if you want to know which modules are certain to be missing, and which *may* be missing.
(self)
| 537 | print("?", name, "imported from", ', '.join(mods)) |
| 538 | |
| 539 | def any_missing(self): |
| 540 | """Return a list of modules that appear to be missing. Use |
| 541 | any_missing_maybe() if you want to know which modules are |
| 542 | certain to be missing, and which *may* be missing. |
| 543 | """ |
| 544 | missing, maybe = self.any_missing_maybe() |
| 545 | return missing + maybe |
| 546 | |
| 547 | def any_missing_maybe(self): |
| 548 | """Return two lists, one with modules that are certainly missing |
no test coverage detected