File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
- # Editor temporary/working/backup files #
2
1
# ########################################
2
+ # Editor temporary/working/backup files #
3
3
. # *
4
4
[# ]* #
5
5
* ~
@@ -27,6 +27,8 @@ doc/_build
27
27
dist
28
28
# Egg metadata
29
29
* .egg-info
30
+ # tox testing tool
31
+ .tox
30
32
31
33
# OS generated files #
32
34
# #####################
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