Skip to content

Commit 3ab99f4

Browse files
authored
Add Py36, update travis to use pycodestyle (#124)
1 parent cdccd2f commit 3ab99f4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ python:
66
- "3.3"
77
- "3.4"
88
- "3.5"
9+
- "3.6"
910
- "pypy"
1011
# command to install dependencies
1112
install:
1213
- "pip install -e ."
13-
- "pip install pep8"
14+
- "pip install pycodestyle"
1415
# command to run tests
1516
script:
1617
# Tests
1718
- python setup.py test
18-
# pep8
19-
- pep8 .
19+
# pycodestyle
20+
- pycodestyle tableaudocumentapi test samples
2021
# Examples
2122
- (cd "samples/replicate-workbook" && python replicate_workbook.py)
2223
- (cd "samples/list-tds-info" && python list_tds_info.py)

test/bvt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,5 +393,6 @@ def test_82_workbook_throws_exception(self):
393393
with self.assertRaises(TableauVersionNotSupportedException):
394394
wb = Workbook(TABLEAU_82_TWB)
395395

396+
396397
if __name__ == '__main__':
397398
unittest.main()

0 commit comments

Comments
 (0)