diff options
author | Azul <azul@riseup.net> | 2017-07-20 14:42:55 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2017-07-20 14:42:55 +0200 |
commit | 7164757c3b48a6a697c132968a06f7eea07c097e (patch) | |
tree | 85a9495928f71b439377e439b74f92f20d9093db /tests/functional/features/steps | |
parent | eecf6ad13801b63c6b7664d8a2e98e905262aaa0 (diff) |
[test] keep config files from failing tests
Diffstat (limited to 'tests/functional/features/steps')
-rw-r--r-- | tests/functional/features/steps/bitmask.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/features/steps/bitmask.py b/tests/functional/features/steps/bitmask.py index b5b4cf1..8758243 100644 --- a/tests/functional/features/steps/bitmask.py +++ b/tests/functional/features/steps/bitmask.py @@ -21,6 +21,6 @@ def initial_run(context): def _initialize_home_path(): home_path = '/tmp/bitmask-test' - shutil.rmtree(home_path, ignore_errors=True) os.environ['HOME'] = home_path + shutil.rmtree(get_path_prefix(), ignore_errors=True) os.makedirs(get_path_prefix()) |