branch: elpa/buttercup
commit 68692d9e04ba0791c791395ee68500e4a5511ff9
Author: Damien Cassou <[email protected]>
Commit: GitHub <[email protected]>
Update Travis configuration instructions
Simplify setup by following [EVM
recommendations](https://github.com/rejeep/evm#deprecation-warning).
---
docs/running-tests.md | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/running-tests.md b/docs/running-tests.md
index bb77b9f..c3ede26 100644
--- a/docs/running-tests.md
+++ b/docs/running-tests.md
@@ -125,19 +125,19 @@ the following `.travis.yml` file:
```
language: emacs-lisp
+sudo: false
+cache: apt
env:
- - EVM_EMACS=emacs-24.4-bin
- - EVM_EMACS=emacs-24.5-bin
+ - EVM_EMACS=emacs-24.5-travis
+ - EVM_EMACS=emacs-25.1-travis
before_install:
- - sudo mkdir /usr/local/evm
- - sudo chown $(id -u):$(id -g) /usr/local/evm
- - curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash
- - export PATH="$HOME/.evm/bin:$PATH"
- - evm install $EVM_EMACS --use
- - curl -fsSkL https://raw.github.com/cask/cask/master/go | python
- - export PATH="$HOME/.cask/bin:$PATH"
+ - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw >
travis.sh && source ./travis.sh
+ - evm install $EVM_EMACS --use --skip
- cask
+install:
+ - cask install
script:
+ - emacs --version
- cask exec buttercup -L .
```