Skip to content

Commit 51b7b03

Browse files
committed
Adding check (in datastore) that setup.py README is valid RST.
1 parent 5fa507f commit 51b7b03

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datastore/nox.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,11 @@ def lint(session):
9696
serious code quality issues.
9797
"""
9898
session.interpreter = 'python3.6'
99-
session.install('flake8', *LOCAL_DEPS)
99+
session.install('flake8', 'docutils', 'Pygments', *LOCAL_DEPS)
100100
session.install('.')
101101
session.run('flake8', 'google/cloud/datastore')
102+
session.run(
103+
'python', 'setup.py', 'check', '--restructuredtext', '--strict')
102104

103105

104106
@nox.session

0 commit comments

Comments
 (0)