fix borg import issue, add comment, fixes #2718

This commit is contained in:
Thomas Waldmann 2017-06-26 19:43:21 +02:00
parent 932fb9ec7a
commit 2c3cdf8c6c
1 changed files with 3 additions and 2 deletions

View File

@ -4,8 +4,6 @@ import sys
import pytest
import borg.cache
# needed to get pretty assertion failures in unit tests:
if hasattr(pytest, 'register_assert_rewrite'):
pytest.register_assert_rewrite('borg.testsuite')
@ -27,6 +25,9 @@ try:
except ImportError:
sys.path = original_path
# note: if anything from borg needs to be imported, do it below this line.
import borg.cache
@pytest.fixture(autouse=True)
def clean_env(tmpdir_factory, monkeypatch):