File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 40
40
"pytest-cov" ,
41
41
"pytest-asyncio" ,
42
42
]
43
- UNIT_TEST_EXTERNAL_DEPENDENCIES = []
43
+ UNIT_TEST_EXTERNAL_DEPENDENCIES = [
44
+ "six" ,
45
+ ]
44
46
UNIT_TEST_LOCAL_DEPENDENCIES = []
45
47
UNIT_TEST_DEPENDENCIES = []
46
48
UNIT_TEST_EXTRAS = []
52
54
"pytest" ,
53
55
"google-cloud-testutils" ,
54
56
]
55
- SYSTEM_TEST_EXTERNAL_DEPENDENCIES = []
57
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [
58
+ "six" ,
59
+ ]
56
60
SYSTEM_TEST_LOCAL_DEPENDENCIES = []
57
61
SYSTEM_TEST_DEPENDENCIES = []
58
62
SYSTEM_TEST_EXTRAS = []
Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ def get_staging_dirs(
99
99
templated_files = common .py_library (
100
100
microgenerator = True ,
101
101
split_system_tests = True ,
102
+ # six required by (but not installed by) google-cloud-core < v2.0.0
103
+ unit_test_external_dependencies = ["six" ],
104
+ system_test_external_dependencies = ["six" ],
102
105
cov_level = 100 ,
103
106
)
104
107
s .move (
You can’t perform that action at this time.
0 commit comments