diff options
author | Thais Siqueira <thais.siqueira@gmail.com> | 2017-04-05 17:11:09 -0300 |
---|---|---|
committer | Thais Siqueira <thais.siqueira@gmail.com> | 2017-04-05 17:11:09 -0300 |
commit | 22c5631039e441bb43f82891d3673224240ec830 (patch) | |
tree | be5c1c55e4e237f9f1e65cec6c69e5e438503a2d | |
parent | 26f4ab8d8943e6aa4f2033999e6b31810034bec3 (diff) |
[fix-tests] Generate a new username for each smoke feature
with @deniscostadsc
-rw-r--r-- | service/test/functional/features/environment.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/test/functional/features/environment.py b/service/test/functional/features/environment.py index eefa22b7..9c6a6b02 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -67,6 +67,7 @@ def before_all(context): def before_tag(context, tag): if tag == "smoke": + context.username = 'testuser_{}'.format(uuid.uuid4()) utils.create_user(context) |