Skip to content

Commit b8e8742

Browse files
committed
add travis
1 parent ceb2c2a commit b8e8742

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: python
2+
3+
sudo: false
4+
5+
matrix:
6+
include:
7+
- python: 2.7
8+
env:
9+
- TOXENV=py27
10+
- python: 3.4
11+
env:
12+
- TOXENV=py34
13+
- python: 3.5
14+
env:
15+
- TOXENV=py35
16+
- python: 3.6
17+
env:
18+
- TOXENV=py36
19+
- python: '3.7-dev'
20+
env:
21+
- TOXENV=py37
22+
install:
23+
- pip install tox pycodestyle nose coverage unittest2 requests
24+
25+
script:
26+
- tox
27+
28+
after_success:
29+
- nosetests --with-coverage --cover-package=cloudipsp

0 commit comments

Comments
 (0)