File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
packages/google-cloud-datastore Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 4040 "pytest-cov" ,
4141 "pytest-asyncio" ,
4242]
43- UNIT_TEST_EXTERNAL_DEPENDENCIES = []
43+ UNIT_TEST_EXTERNAL_DEPENDENCIES = [
44+ "six" ,
45+ ]
4446UNIT_TEST_LOCAL_DEPENDENCIES = []
4547UNIT_TEST_DEPENDENCIES = []
4648UNIT_TEST_EXTRAS = []
5254 "pytest" ,
5355 "google-cloud-testutils" ,
5456]
55- SYSTEM_TEST_EXTERNAL_DEPENDENCIES = []
57+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [
58+ "six" ,
59+ ]
5660SYSTEM_TEST_LOCAL_DEPENDENCIES = []
5761SYSTEM_TEST_DEPENDENCIES = []
5862SYSTEM_TEST_EXTRAS = []
Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ def get_staging_dirs(
9999templated_files = common .py_library (
100100 microgenerator = True ,
101101 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" ],
102105 cov_level = 100 ,
103106)
104107s .move (
You can’t perform that action at this time.
0 commit comments