Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
j-bennet committed Sep 22, 2018
1 parent 683487a commit 7f2d831
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@


def before_all(context):
"""
Set env parameters.
"""
"""Set env parameters."""
env_old = copy.deepcopy(dict(os.environ))
os.environ['LINES'] = "100"
os.environ['COLUMNS'] = "100"
Expand All @@ -26,7 +24,8 @@ def before_all(context):

context.package_root = os.path.abspath(
os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
fixture_dir = os.path.join(context.package_root, 'tests/features/fixture_data')
fixture_dir = os.path.join(
context.package_root, 'tests/features/fixture_data')

print('package root:', context.package_root)
print('fixture dir:', fixture_dir)
Expand Down

0 comments on commit 7f2d831

Please sign in to comment.