Skip to content

Commit

Permalink
Fix SatelliteQE#7598 - uninitialized settings being called
Browse files Browse the repository at this point in the history
To populate bz_cache.json with the current sat version
the `settings.server` property was being called before
the initialization of `settings` object.
  • Loading branch information
rochacbruno authored and pondrejk committed Jan 28, 2020
1 parent ee03a2f commit 8cfe1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robottelo/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def generate_issue_collection(items, config): # pragma: no cover
...
}
"""

settings.configure()
valid_markers = ["skip_if_open", "skip", "deselect"]
collected_data = defaultdict(lambda: {"data": {}, "used_in": []})

Expand Down

0 comments on commit 8cfe1dd

Please sign in to comment.