##// END OF EJS Templates
Merge pull request #4174 from minrk/markup-templates...
Merge pull request #4174 from minrk/markup-templates various issues in markdown and rst templates - remove prompts from default output - add missing HTML block - remove double-wrapping of latex - use plain-markdown indentation for code blocks (could use GFM ``` ` ` `python```) - images didn't work in either one at all - markdown extracts output closes #4024

File last commit:

r12145:cc527181
r12461:8c88aec6 merge
Show More
.travis.yml
16 lines | 438 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.7
- 3.3
before_install:
- pip install jinja2
- easy_install -q pyzmq
- sudo apt-get install pandoc
- pip install pygments
- pip install sphinx
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi