##// END OF EJS Templates
Add Markdown to the list of downloadable nbconverted formats....
Add Markdown to the list of downloadable nbconverted formats. Seem it was just forgotten. The list was not auto generated on purpose IIRC, as some format, like TeX were deemed not useful in menu.

File last commit:

r18351:0ab76370
r20542:bfd58b1f
Show More
tox.ini
44 lines | 1.1 KiB | text/x-ini | IniLexer
Marc Abramowitz
Add tox.ini for tox (http://tox.testrun.org/)
r7631 # Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
MinRK
use invoke instead of fabric...
r18351 # Building the source distribution requires `invoke` and `lessc` to be on your PATH.
# "pip install invoke" will install invoke. Less can be installed by
cel
Updated tox.ini for local testing.
r17665 # node.js' (http://nodejs.org/) package manager npm:
# "npm install -g less".
# Javascript tests need additional dependencies that can be installed
# using node.js' package manager npm:
# [*] casperjs: "npm install -g casperjs"
# [*] slimerjs: "npm install -g slimerjs"
# [*] phantomjs: "npm install -g phantomjs"
# Note: qt4 versions break some tests with tornado versions >=4.0.
Marc Abramowitz
Add tox.ini for tox (http://tox.testrun.org/)
r7631 [tox]
cel
Updated tox.ini for local testing.
r17665 envlist = py27, py33, py34
Marc Abramowitz
Add tox.ini for tox (http://tox.testrun.org/)
r7631
[testenv]
cel
Updated tox.ini for local testing.
r17665 deps =
pyzmq
MinRK
update tox.ini...
r12325 nose
cel
Updated tox.ini for local testing.
r17665 tornado<4.0
MinRK
update tox.ini...
r12325 jinja2
sphinx
pygments
cel
Updated tox.ini for local testing.
r17665 jsonpointer
jsonschema
mistune
Takafumi Arakaki
Fix tox.ini...
r8877 # To avoid loading IPython module in the current directory, change
# current directory to ".tox/py*/tmp" before running test.
changedir = {envtmpdir}
Marc Abramowitz
Add tox.ini for tox (http://tox.testrun.org/)
r7631 commands =
cel
Updated tox.ini for local testing.
r17665 iptest --all
[testenv:py27]
deps=
mock
{[testenv]deps}