(pluginmanager, module, registration_name)
| 30 | |
| 31 | |
| 32 | def _consider_conftest(pluginmanager, module, registration_name): |
| 33 | if six.PY3: |
| 34 | pluginmanager.consider_conftest(module, registration_name=registration_name) |
| 35 | else: |
| 36 | pluginmanager.consider_conftest(module) |
| 37 | |
| 38 | |
| 39 | def _import_conftest(pluginmanager, module_name, proper_path): |
no outgoing calls
no test coverage detected