ceph/qa/tasks/mgr
Kefu Chai b0bdbc3414 qa/tasks/mgr: partial revert of 'import with full path'
this change partially reverts #34139

using relative import helps with readability and ease the pain to write
down the full parent module name

in #34139, all relative imports were replaced with full path, because we
were using following code to verify if the code is python3 compatible:

```
  mod_spec = importlib.util.spec_from_file_location(mod_name, path)
  mod = importlib.util.module_from_spec(mod_spec)
  mod_spec.loader.exec_module(mod)
```

but this does not work with submodule which can import using relative
import without specifying the name of the package and its parent module.

Signed-off-by: Kefu Chai <kchai@redhat.com>
2020-03-26 14:37:06 +08:00
..
dashboard qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
__init__.py
mgr_test_case.py qa/tasks/mgr: set mgr module option with --force 2020-01-10 13:28:34 +08:00
test_crash.py qa/tasks/mgr: fix imports for py3 2020-03-06 10:19:55 +01:00
test_dashboard.py qa: import with full path 2020-03-24 18:27:55 +08:00
test_failover.py qa/tasks: call super class's setUp() 2020-02-15 12:39:08 +08:00
test_insights.py qa: import with full path 2020-03-24 18:27:55 +08:00
test_module_selftest.py test: Disable self-test of diskprediction_cloud since it isn't loaded 2020-02-27 13:12:45 -08:00
test_orchestrator_cli.py qa: import with full path 2020-03-24 18:27:55 +08:00
test_progress.py qa: import with full path 2020-03-24 18:27:55 +08:00
test_prometheus.py qa: import with full path 2020-03-24 18:27:55 +08:00