Rename main_util_fixtures.py to conftest.py to allow fixture auto discovery

Also fix new PEP-008 issues.
This commit is contained in:
Nicola Soranzo
2020-02-14 15:50:06 +00:00
parent c15d656726
commit c738481e82
8 changed files with 36 additions and 30 deletions
-2
View File
@@ -1,6 +1,5 @@
import shlex
import subprocess
import sys
from collections import namedtuple
import bashlex
@@ -67,6 +66,5 @@ def evaluate_command_node(node, context):
return subprocess.check_output(shlex.split(command), env=context.environment, universal_newlines=True)
def evaluate_parameter_node(node, context):
return context.environment.get(node.value, '')