File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1- # Editor temporary/working/backup files #
21# ########################################
2+ # Editor temporary/working/backup files #
33. #*
44[# ]* #
55* ~
@@ -27,6 +27,8 @@ doc/_build
2727dist
2828# Egg metadata
2929* .egg-info
30+ # tox testing tool
31+ .tox
3032
3133# OS generated files #
3234# #####################
Original file line number Diff line number Diff line change 1+ # Tox (http://tox.testrun.org/) is a tool for running tests
2+ # in multiple virtualenvs. This configuration file will run the
3+ # test suite on all supported python versions. To use it, "pip install tox"
4+ # and then run "tox" from this directory.
5+
6+ [tox]
7+ envlist = py26, py27, py31, py32
8+
9+ [testenv]
10+ changedir = /tmp
11+ commands =
12+ sh -c ' rm -f $HOME/.matplotlib/fontList*'
13+ {envpython} {toxinidir}/tests.py
14+ deps =
15+ nose
16+ numpy
You can’t perform that action at this time.
0 commit comments