emacs-ipython-notebook/.travis.yml

26 lines
681 B
YAML
Raw Normal View History

language: python
python:
- "2.7"
- "3.4"
- "3.5"
2012-09-12 17:54:19 +02:00
before_install:
2013-02-10 04:17:14 +01:00
- if [ "$EMACS" = "emacs24" ]; then
sudo apt-get remove -qq emacs
sudo apt-get install -qq emacs24
2013-02-10 04:17:14 +01:00
fi
- if [ "$EMACS" = 'emacs-snapshot' ]; then
2012-09-12 19:55:50 +02:00
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get update -qq &&
sudo apt-get install -qq
emacs-snapshot-el emacs-snapshot-gtk emacs-snapshot;
fi
install:
- if [ "$JUPYTER" ]; then
pip install jupyter==$JUPYTER
fi
env:
- EMACS=emacs24 IPYCMD=jupyter JUPYTER=1.0.0
- EMACS=emacs-snapshot IPYCMD=jupyter JUPYTER=1.0.0
script: python tools/testein.py --emacs $EMACS --ipython $IPYCMD