File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,18 @@ python:
6
6
- " 3.3"
7
7
- " 3.4"
8
8
- " 3.5"
9
+ - " 3.6"
9
10
- " pypy"
10
11
# command to install dependencies
11
12
install :
12
13
- " pip install -e ."
13
- - " pip install pep8 "
14
+ - " pip install pycodestyle "
14
15
# command to run tests
15
16
script :
16
17
# Tests
17
18
- python setup.py test
18
- # pep8
19
- - pep8 .
19
+ # pycodestyle
20
+ - pycodestyle tableaudocumentapi test samples
20
21
# Examples
21
22
- (cd "samples/replicate-workbook" && python replicate_workbook.py)
22
23
- (cd "samples/list-tds-info" && python list_tds_info.py)
Original file line number Diff line number Diff line change @@ -393,5 +393,6 @@ def test_82_workbook_throws_exception(self):
393
393
with self .assertRaises (TableauVersionNotSupportedException ):
394
394
wb = Workbook (TABLEAU_82_TWB )
395
395
396
+
396
397
if __name__ == '__main__' :
397
398
unittest .main ()
You can’t perform that action at this time.
0 commit comments