Skip to content

Commit d4233c8

Browse files
chalmerloweohmayr
authored andcommitted
adds sessions (labeled) unsupported for unit, docs, docfx
1 parent 56140e2 commit d4233c8

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

packages/google-crc32c/noxfile.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,22 @@ def core_deps_from_source(session):
152152
"""
153153
# TODO(https://github.com/googleapis/google-cloud-python/issues/16014):
154154
# Add core deps from source tests
155-
session.skip("Core deps from source tests are not yet supported")
155+
session.skip("Core deps from source tests are not yet supported")
156+
157+
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
158+
def unit(session):
159+
"""Run all unit tests.
160+
"""
161+
session.skip("Unit tests are not supported")
162+
163+
@nox.session(python=DEFAULT_PYTHON_VERSION)
164+
def docs(session):
165+
"""Run all docs tests.
166+
"""
167+
session.skip("Docs tests are not supported")
168+
169+
@nox.session(python=DEFAULT_PYTHON_VERSION)
170+
def docfx(session):
171+
"""Run all docfx tests.
172+
"""
173+
session.skip("Docfx tests are not supported")

0 commit comments

Comments
 (0)