-
Notifications
You must be signed in to change notification settings - Fork 16
/
.travis.yml
38 lines (35 loc) · 913 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
38
sudo: false
language: python
python:
- '3.6'
- '3.5'
- '3.4'
- '2.7'
env:
- EVM_EMACS=emacs-git-snapshot-travis
matrix:
include:
- python: '3.6'
env: EVM_EMACS=emacs-24.4-travis
- python: '2.7'
env: EVM_EMACS=emacs-24.4-travis
before_install:
- pip install tox-travis tox-run-command
# Install Emacs
- git clone https://github.com/rejeep/evm.git /home/travis/.evm
- export PATH="/home/travis/.evm/bin:$PATH"
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
# Install Cask
- curl -fsSkL
--max-time 10
--retry 10
--retry-delay 10
https://raw.github.com/cask/cask/master/go
| python
- export PATH="/home/travis/.cask/bin:$PATH"
# The following command does (should) not have any effect on test,
# but to separate installation phase and testing phase:
- make before-test
script:
- make travis-ci