Skip to content

Commit

Permalink
chore: update test dependencies (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sanche authored Sep 15, 2023
1 parent b8cbf1d commit c21bae2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
]
UNIT_TEST_EXTERNAL_DEPENDENCIES = [
"aiounittest",
"six",
]
UNIT_TEST_LOCAL_DEPENDENCIES = []
UNIT_TEST_DEPENDENCIES = []
Expand All @@ -57,6 +58,7 @@
]
SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [
"pytest-asyncio",
"six",
]
SYSTEM_TEST_LOCAL_DEPENDENCIES = []
SYSTEM_TEST_DEPENDENCIES = []
Expand Down
4 changes: 2 additions & 2 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def update_fixup_scripts(library):
templated_files = common.py_library(
samples=False, # set to True only if there are samples
system_test_python_versions=["3.7"],
unit_test_external_dependencies=["aiounittest"],
system_test_external_dependencies=["pytest-asyncio"],
unit_test_external_dependencies=["aiounittest", "six"],
system_test_external_dependencies=["pytest-asyncio", "six"],
microgenerator=True,
cov_level=100,
split_system_tests=True,
Expand Down

0 comments on commit c21bae2

Please sign in to comment.