Skip to content

Commit

Permalink
fix for unbound local error n_m referenced before assignment (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
hah86 committed Sep 10, 2020
1 parent 2efdfad commit c023e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_cloud/plugin.py
Expand Up @@ -253,8 +253,8 @@ def get_nodes_specs(
# pylint: disable=E1101
group = execnet.Group()
try:
n_m = NodeManager(config, specs=[])
if virtualenv_path:
n_m = NodeManager(config, specs=[])
virtualenv_path = os.path.relpath(virtualenv_path)
node_specs = []
node_caps = {}
Expand Down

0 comments on commit c023e1a

Please sign in to comment.