forked from galaxyproject/ephemeris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (33 loc) · 861 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: python
sudo: false
matrix:
include:
- python: 2.7
env: TOX_ENV=py27-lint
- python: 3.5
env: TOX_ENV=py35-lint
- python: 2.7
env: TOX_ENV=py27-lint-readme
- python: 2.7
env: TOX_ENV=py27
services:
- docker
- python: 3.5
env: TOX_ENV=py35
services:
- docker
global:
# do not load /etc/boto.cfg with Python 3 incompatible plugin
# https://github.com/travis-ci/travis-ci/issues/5246#issuecomment-166460882
- BOTO_CONFIG=/doesnotexist
install:
- sudo rm /etc/boto.cfg
# Setup git to allow git operations.
- git config --global user.name "Travis Test User"
- git config --global user.email "[email protected]"
- pip install tox coveralls
- python setup.py install
script:
- tox -e $TOX_ENV
after_success:
- coveralls