Skip to content

Commit

Permalink
Ensure dash is made available in Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiltyDolphin committed Jul 13, 2018
1 parent 9347ccb commit 5ba7fbb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ install:
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get -qq update &&
sudo apt-get -qq -f install &&
sudo apt-get -qq install emacs24 emacs24-el;
sudo apt-get -qq install emacs24 emacs24-el &&
wget https://raw.githubusercontent.com/magnars/dash.el/master/dash.el;
fi
- if [ "$EMACS" = 'emacs-snapshot' ]; then
sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
sudo apt-get -qq update &&
sudo apt-get -qq -f install &&
sudo apt-get -qq install emacs-snapshot &&
sudo apt-get -qq install emacs-snapshot-el;
sudo apt-get -qq install emacs-snapshot-el &&
wget https://raw.githubusercontent.com/magnars/dash.el/master/dash.el;
fi

script:
- emacs -batch -l ert -L . -L tests/ -l tests/emaps-tests.el -f ert-run-tests-batch-and-exit
- emacs -batch -l dash.el -l ert -L . -L tests/ -l tests/emaps-tests.el -f ert-run-tests-batch-and-exit

notifications:
email: false

0 comments on commit 5ba7fbb

Please sign in to comment.