Initial fixes to plugin repo
Fixing requirements and setup for manila tempest plugin.
Depends-On: I21f2e27ba18f18ebdf07105452c0ffb6fc04bb83
Change-Id: Id773014b915817ff41b9bffd41e84e4d53fb78be
diff --git a/manila_tempest_tests/utils.py b/manila_tempest_tests/utils.py
index 80eebea..3598ec7 100644
--- a/manila_tempest_tests/utils.py
+++ b/manila_tempest_tests/utils.py
@@ -110,7 +110,7 @@
def rand_ipv6_ip(network=False):
"""This uses the IPv6 documentation range of 2001:DB8::/32"""
- ran_add = ["%x" % random.randrange(0, 16**4) for i in range(6)]
+ ran_add = ["%x" % random.randrange(0, 16 ** 4) for i in range(6)]
address = "2001:0DB8:" + ":".join(ran_add)
if network:
mask_length = six.text_type(random.randint(32, 128))