Skip to content

Commit bd950f8

Browse files
committed
Fixing docs nox session for umbrella package.
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
1 parent 2f3a20c commit bd950f8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

nox.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def docs(session):
2828
session.chdir(os.path.realpath(os.path.dirname(__file__)))
2929
session.install('sphinx', 'sphinx_rtd_theme')
3030
session.install(
31-
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'error_reporting/',
32-
'language/', 'logging/', 'monitoring/', 'pubsub/', 'resource_manager/',
33-
'runtimeconfig/', 'spanner/', 'speech/', 'storage/', 'translate/',
34-
'vision/',
31+
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/', 'language/',
32+
'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
33+
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
34+
'storage/', 'translate/', 'vision/',
3535
)
3636
session.install('.')
3737

0 commit comments

Comments
 (0)