Skip to content

Commit 53e18e3

Browse files
author
Sylvain MARIE
committed
Removed some imports of the six package
1 parent 0a5f7c7 commit 53e18e3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

pytest_cases/tests/pytest_extension/fixtures/fixture_plus_and_others/test_fixtures_parametrize_stereo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# License: 3-clause BSD, <https://github.com/smarie/python-pytest-cases/blob/master/LICENSE>
55
from itertools import product
66

7-
from six import string_types
7+
from pytest_cases.common_mini_six import string_types
88
import pytest
99

1010
from pytest_cases import fixture

pytest_cases/tests/pytest_extension/meta/test_all.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import ast
22
import os
33
import shlex
4-
import sys
5-
from importlib import import_module
64

75
import re
8-
from os.path import join, dirname, pardir, isdir, exists
6+
from os.path import join, dirname, isdir, exists
97

108
import pytest
11-
from six import string_types
9+
from pytest_cases.common_mini_six import string_types
1210

1311
# Make the list of all tests that we will have to execute (each in an independent pytest runner)
1412
THIS_DIR = dirname(__file__)

0 commit comments

Comments
 (0)