Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 80cc0cb

Browse filesBrowse files
committed
Adding PEP8 only lint rule to tox and Travis.
1 parent e30de64 commit 80cc0cb
Copy full SHA for 80cc0cb

2 files changed

+13-1Lines changed: 13 additions & 1 deletion

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.travis.yml‎

Copy file name to clipboardExpand all lines: .travis.yml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ script:
99
- tox -e py27
1010
after_success:
1111
- tox -e cover
12+
- tox -e lint
1213
- coveralls
Collapse file

‎tox.ini‎

Copy file name to clipboardExpand all lines: tox.ini
+12-1Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py26,py27,cover,docs
3+
py26,py27,cover,docs,lint
44

55
[testenv]
66
commands =
@@ -28,3 +28,14 @@ commands =
2828
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
2929
deps =
3030
Sphinx
31+
32+
[pep8]
33+
exclude = gcloud/datastore/datastore_v1_pb2.py,.*/,docs/conf.py
34+
35+
[testenv:lint]
36+
basepython =
37+
python2.7
38+
commands =
39+
pep8
40+
deps =
41+
pep8

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.