Skip to content

Commit

Permalink
Fixing docs nox session for umbrella package.
Browse files Browse the repository at this point in the history
Two issues:

- error_reporting came BEFORE logging (which means it would
  try to pull in a logging dep from PyPI that doesn't exist)
- dns was NOT in the list of local packages
  • Loading branch information
dhermes committed Mar 30, 2017
1 parent 2f3a20c commit bd950f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def docs(session):
session.chdir(os.path.realpath(os.path.dirname(__file__)))
session.install('sphinx', 'sphinx_rtd_theme')
session.install(
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'error_reporting/',
'language/', 'logging/', 'monitoring/', 'pubsub/', 'resource_manager/',
'runtimeconfig/', 'spanner/', 'speech/', 'storage/', 'translate/',
'vision/',
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/', 'language/',
'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
'storage/', 'translate/', 'vision/',
)
session.install('.')

Expand Down

0 comments on commit bd950f8

Please sign in to comment.