Skip to content

Commit 11636f2

Browse files
committed
tests: See googleapis#16013
1 parent 3704f05 commit 11636f2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

packages/google-auth/noxfile.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,24 @@ def docs(session):
167167
os.path.join("docs", "_build", "html", ""),
168168
)
169169

170+
171+
@nox.session(python=DEFAULT_PYTHON_VERSION)
172+
def prerelease_deps(session):
173+
"""Run all tests with pre-release versions of dependencies installed
174+
rather than the standard non pre-release versions.
175+
Pre-release versions can be installed using
176+
`pip install --pre <package>`.
177+
"""
178+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16013):
179+
# Add prerelease tests
180+
session.skip("Prerelease tests are not yet supported")
181+
182+
183+
@nox.session(python=DEFAULT_PYTHON_VERSION)
184+
def core_deps_from_source(session):
185+
"""Run all tests with core dependencies installed from source
186+
rather than pulling the dependencies from PyPI.
187+
"""
188+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16013):
189+
# Add prerelease tests
190+
session.skip("Prerelease tests are not yet supported")

0 commit comments

Comments
 (0)