Skip to content

Commit c21bae2

Browse files
chore: update test dependencies (#761)
1 parent b8cbf1d commit c21bae2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
]
4444
UNIT_TEST_EXTERNAL_DEPENDENCIES = [
4545
"aiounittest",
46+
"six",
4647
]
4748
UNIT_TEST_LOCAL_DEPENDENCIES = []
4849
UNIT_TEST_DEPENDENCIES = []
@@ -57,6 +58,7 @@
5758
]
5859
SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [
5960
"pytest-asyncio",
61+
"six",
6062
]
6163
SYSTEM_TEST_LOCAL_DEPENDENCIES = []
6264
SYSTEM_TEST_DEPENDENCIES = []

owlbot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ def update_fixup_scripts(library):
139139
templated_files = common.py_library(
140140
samples=False, # set to True only if there are samples
141141
system_test_python_versions=["3.7"],
142-
unit_test_external_dependencies=["aiounittest"],
143-
system_test_external_dependencies=["pytest-asyncio"],
142+
unit_test_external_dependencies=["aiounittest", "six"],
143+
system_test_external_dependencies=["pytest-asyncio", "six"],
144144
microgenerator=True,
145145
cov_level=100,
146146
split_system_tests=True,

0 commit comments

Comments
 (0)