fix for issue 246

This commit is contained in:
Dmitriy Kunitskiy 2015-07-20 14:51:25 -07:00
parent 2c70476c63
commit 72b61a81f9
3 changed files with 20 additions and 1 deletions

View file

@ -73,3 +73,8 @@ xfailif_no_pcre_support = pytest.mark.xfail(
not platform_supports_pcre(),
reason='grep -P is not supported on this platform',
)
xfailif_no_symlink = pytest.mark.xfail(
not hasattr(os, 'symlink'),
reason='Symlink is not supported on this platform',
)