@@ -159,12 +159,12 @@ def mypy(session):
159159
160160
161161@nox .session (python = ALL_PYTHON )
162- @nox .parametrize (["install_extras " ], (True , False ))
163- def unit (session , install_extras ):
162+ @nox .parametrize (["install_deprecated_extras " ], (True , False ))
163+ def unit (session , install_deprecated_extras ):
164164 # Install all test dependencies, then install this package in-place.
165165
166166 min_py , max_py = UNIT_TEST_PYTHON_VERSIONS [0 ], UNIT_TEST_PYTHON_VERSIONS [- 1 ]
167- if not install_extras and session .python not in (min_py , max_py ):
167+ if not install_deprecated_extras and session .python not in (min_py , max_py ):
168168 # only run double tests on first and last supported versions
169169 session .skip (
170170 f"Extended tests only run on boundary Python versions ({ min_py } , { max_py } ) to reduce CI load."
@@ -178,15 +178,15 @@ def unit(session, install_extras):
178178 )
179179
180180 install_args = ["-e" ]
181- if install_extras :
181+ if install_deprecated_extras :
182182 session .install ("oauth2client" )
183183 install_args .append (".[testing,enterprise_cert,rsa]" )
184184 else :
185185 install_args .append (".[testing]" )
186186
187187 if core_constraints .exists ():
188188 install_args .extend (["-c" , str (core_constraints )])
189- if install_extras and extras_constraints .exists ():
189+ if install_deprecated_extras and extras_constraints .exists ():
190190 install_args .extend (["-c" , str (extras_constraints )])
191191
192192 session .install (* install_args )
0 commit comments