forked from galaxyproject/planemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (26 loc) · 668 Bytes
/
.travis.yml
File metadata and controls
31 lines (26 loc) · 668 Bytes
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
language: python
sudo: false
python: 2.7
env:
- TOX_ENV=py27-lint
- TOX_ENV=py34-lint
- TOX_ENV=py27-lint-readme
- TOX_ENV=py27-lint-docs
- TOX_ENV=py27-quick
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py27-lint-docstrings
install:
# Setup git to allow git operations.
- git config --global user.name "Travis Test User"
- git config --global user.email "planemo_test@galaxyproject.org"
- pip install tox coveralls
matrix:
allow_failures:
- env: TOX_ENV=py34
- env: TOX_ENV=py27-lint-docstrings
script: PLANEMO_ENABLE_POSTGRES_TESTS=1 PLANEMO_SKIP_CWLTOOL_TESTS=1 tox -e $TOX_ENV
after_success:
- coveralls
services:
- postgresql