Skip to content

Commit

Permalink
[CHANGE ME] Re-generated kms to pick up changes in the API or client …
Browse files Browse the repository at this point in the history
…library generator.
  • Loading branch information
yoshi-automation committed Apr 18, 2019
1 parent 546ae39 commit 5740888
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions kms/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,21 @@ def cover(session):
session.run("coverage", "report", "--show-missing", "--fail-under=100")

session.run("coverage", "erase")

@nox.session(python="3.7")
def docs(session):
"""Build the docs for this library."""

session.install('sphinx', 'alabaster', 'recommonmark')

shutil.rmtree(os.path.join('docs', '_build'), ignore_errors=True)
session.run(
'sphinx-build',
'-W', # warnings as errors
'-T', # show full traceback on exception
'-N', # no colors
'-b', 'html',
'-d', os.path.join('docs', '_build', 'doctrees', ''),
os.path.join('docs', ''),
os.path.join('docs', '_build', 'html', ''),
)
6 changes: 3 additions & 3 deletions kms/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"updateTime": "2019-04-16T12:18:58.998401Z",
"updateTime": "2019-04-18T12:19:55.353656Z",
"sources": [
{
"generator": {
Expand All @@ -12,8 +12,8 @@
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "b7f88d8827df8a78e1bb1d56b0f56a1bc23c6359",
"internalRef": "243675277"
"sha": "d35ca3509160f09d3b0cc5360531751d95f3e292",
"internalRef": "244086609"
}
},
{
Expand Down

0 comments on commit 5740888

Please sign in to comment.