mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Remove tarfile_open (tarfile open in 2.7+)
This commit is contained in:
parent
0a810249e3
commit
57cc50e0ad
4 changed files with 8 additions and 19 deletions
|
|
@ -2,6 +2,7 @@ from __future__ import absolute_import
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import os.path
|
||||
import tarfile
|
||||
|
||||
import mock
|
||||
import pytest
|
||||
|
|
@ -9,7 +10,6 @@ import pytest
|
|||
from pre_commit import make_archives
|
||||
from pre_commit.util import cmd_output
|
||||
from pre_commit.util import cwd
|
||||
from pre_commit.util import tarfile_open
|
||||
from testing.fixtures import git_dir
|
||||
from testing.util import get_head_sha
|
||||
from testing.util import skipif_slowtests_false
|
||||
|
|
@ -41,7 +41,7 @@ def test_make_archive(tempdir_factory):
|
|||
extract_dir = tempdir_factory.get()
|
||||
|
||||
# Extract the tar
|
||||
with tarfile_open(archive_path) as tf:
|
||||
with tarfile.open(archive_path) as tf:
|
||||
tf.extractall(extract_dir)
|
||||
|
||||
# Verify the contents of the tar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue