File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,19 @@ release tarballs this is unneeded)::
80
80
And then they can be run, with ``nose `` installed, using the
81
81
``nosetests `` command in the root directory. All should pass.
82
82
83
+ If you have all compatible Python implementations available on your
84
+ system, you can run tests on all of them by using tox::
85
+
86
+ $ pip install tox
87
+ $ tox
88
+ ...
89
+ _______________________ summary ______________________
90
+ py26: commands succeeded
91
+ py27: commands succeeded
92
+ py32: commands succeeded
93
+ py33: commands succeeded
94
+ congratulations :)
95
+
83
96
84
97
Contributing
85
98
------------
Original file line number Diff line number Diff line change
1
+ [tox]
2
+ envlist = py26,py27,py32,py33
3
+
4
+ [testenv]
5
+ deps =
6
+ charade
7
+ datrie
8
+ Genshi
9
+ lxml
10
+ nose
11
+ six
12
+ commands =
13
+ {envbindir}/nosetests
You can’t perform that action at this time.
0 commit comments