10000 Add automated test runs via travis (#8) · gaoang2148/server-client-python@8e1040b · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e1040b

Browse files
author
Russell Hay
authored
Add automated test runs via travis (tableau#8)
1 parent 1084907 commit 8e1040b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.3"
5+
- "3.4"
6+
- "3.5"
7+
- "pypy"
8+
# command to install dependencies
9+
install:
10+
- "pip install -e ."
11+
# - "pip install pep8"
12+
# command to run tests
13+
script:
14+
# Tests
15+
- python setup.py test
16+
# pep8 - disabled for now until we can scrub the files to make sure we pass before turning it on
17+
# - pep8 .

0 commit comments

Comments
 (0)
0