Merge "Fix skip_path logic if path part is empty"
diff --git a/tempest/auth.py b/tempest/auth.py
index 6dad3a4..5df6224 100644
--- a/tempest/auth.py
+++ b/tempest/auth.py
@@ -331,7 +331,7 @@
             if noversion_path != "":
                 path += "/" + noversion_path
             _base_url = _base_url.replace(parts.path, path)
-        if filters.get('skip_path', None) is not None:
+        if filters.get('skip_path', None) is not None and parts.path != '':
             _base_url = _base_url.replace(parts.path, "/")
 
         return _base_url