Skip to content

Commit

Permalink
test: derefernce loop test exception on win/py3.6
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
  • Loading branch information
miurahr committed Oct 15, 2020
1 parent a653528 commit b4d8716
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_archive.py
Expand Up @@ -578,6 +578,8 @@ def test_compress_lzma2_bcj(tmp_path):
@pytest.mark.skipif(sys.version_info < (3, 6), reason="requires python3.6 or higher")
@pytest.mark.skipif(sys.platform.startswith("win") and (ctypes.windll.shell32.IsUserAnAdmin() == 0),
reason="Administrator rights is required to make symlink on windows")
@pytest.mark.skipif(sys.platform.startswith("win") and sys.version_info < (3, 7),
reason="requires python3.7 or higher for windows")
def test_compress_files_deref_loop(tmp_path):
tmp_path.joinpath('src').mkdir()
tmp_path.joinpath('tgt').mkdir()
Expand Down

0 comments on commit b4d8716

Please sign in to comment.