Skip to content

Commit

Permalink
Dropping umbrella package from nox docs sessions. (#3829)
Browse files Browse the repository at this point in the history
Follow up to #3828.
  • Loading branch information
dhermes authored Aug 16, 2017
1 parent d7b625c commit 13cdb0c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
# built documents.
#
# The short X.Y version.
distro = pkg_resources.get_distribution('google-cloud')
distro = pkg_resources.get_distribution('google-cloud-core')
release = os.getenv('SPHINX_RELEASE', distro.version)

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
23 changes: 18 additions & 5 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,25 @@ def docs(session):
# Install Sphinx and also all of the google-cloud-* packages.
session.chdir(os.path.realpath(os.path.dirname(__file__)))
session.install('Sphinx >= 1.6.2', 'sphinx_rtd_theme')
session.install('.')
session.install(
'core/', 'storage/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/',
'language/', 'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
'trace/', 'translate/', 'vision/',
'core/',
'storage/',
'bigquery/',
'bigtable/',
'datastore/',
'dns/',
'language/',
'logging/',
'error_reporting/',
'monitoring/',
'pubsub/',
'resource_manager/',
'runtimeconfig/',
'spanner/',
'speech/',
'trace/',
'translate/',
'vision/',
)

# Build the docs!
Expand Down

0 comments on commit 13cdb0c

Please sign in to comment.