File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 88* .snap
99sophia
1010* .egg-info
11+ .tox
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ def test_10_space(self):
236236 def test_11_select_all_hash (self ):
237237 space = self .con .space ('space_2' )
238238 cnt = 10
239- for k in xrange (cnt ):
239+ for k in range (cnt ):
240240 space .insert ([k , 'lol' ])
241241 self .assertEqual (len (space .select (())), cnt )
242242 self .assertEqual (len (space .select ([])), cnt )
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 = py27, py35, pypy
8+
9+ [testenv]
10+ commands = python setup.py test
11+ deps =
12+ pyyaml>=3.10
13+ msgpack-python>=0.4.0
14+ six
You can’t perform that action at this time.
0 commit comments