mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
30 lines
752 B
YAML
30 lines
752 B
YAML
language: python
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- git
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- env: EVM_EMACS=emacs-git-snapshot
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
before_install:
|
|
- sudo apt-get -yq update
|
|
- sudo apt-get -yq install git
|
|
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
|
|
- evm install $EVM_EMACS --use --skip
|
|
- cask install
|
|
- evm list
|
|
install:
|
|
- pip install jupyter==$JUPYTER
|
|
env:
|
|
- EVM_EMACS=emacs-24.4-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
- EVM_EMACS=emacs-25.1-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
- EVM_EMACS=emacs-git-snapshot-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
script:
|
|
- emacs --version
|
|
- python tools/testein.py --emacs emacs --ipython $IPYCMD
|
|
|