aboutsummaryrefslogtreecommitdiff
path: root/system_tests
diff options
context:
space:
mode:
authorDavid Buxton <david@gasmark6.com>2020-10-29 21:26:11 +0000
committerGitHub <noreply@github.com>2020-10-29 17:26:11 -0400
commit0323cf390b16e8483660ac88775e8ea4e7f7702d (patch)
tree06a7b283f94af73a9e1081072a0d0dff313187dd /system_tests
parentd0a47c10ca0ef1712b415b9d9c34118ab8b6cfee (diff)
downloadgoogle-auth-library-python-0323cf390b16e8483660ac88775e8ea4e7f7702d.tar.gz
feat: Add custom scopes for access tokens from the metadata service (#633)
This works for App Engine, Cloud Run and Flex. On Compute Engine you can request custom scopes, but they are ignored. Co-authored-by: Tres Seaver <tseaver@palladion.com> Co-authored-by: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>
Diffstat (limited to 'system_tests')
-rw-r--r--system_tests/noxfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/system_tests/noxfile.py b/system_tests/noxfile.py
index 0f852ea..699a1b3 100644
--- a/system_tests/noxfile.py
+++ b/system_tests/noxfile.py
@@ -315,7 +315,7 @@ def default_explicit_service_account_async(session):
session.env[EXPECT_PROJECT_ENV] = "1"
session.install(*(TEST_DEPENDENCIES_SYNC + TEST_DEPENDENCIES_ASYNC))
session.install(LIBRARY_DIR)
- session.run("pytest", "system_tests_async/test_default.py",
+ session.run("pytest", "system_tests_async/test_default.py",
"system_tests_async/test_id_token.py")