Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update test dependencies #761

Merged
merged 11 commits into from
Sep 15, 2023
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
Loading