ceph/qa/tasks/mgr/dashboard
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
..
__init__.py
helper.py qa: import with full path 2020-03-24 18:27:55 +08:00
test_auth.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_cephfs.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_cluster_configuration.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_crush_rule.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_erasure_code_profile.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_ganesha.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_health.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_host.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_logs.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_mgr_module.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_monitor.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_orchestrator.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_osd.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_perf_counters.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_pool.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_rbd_mirroring.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_rbd.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_requests.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_rgw.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_role.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_settings.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_summary.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00
test_user.py qa/tasks/mgr: partial revert of 'import with full path' 2020-03-26 14:37:06 +08:00