forked from apache/cassandra-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (29 loc) · 804 Bytes
/
tox.ini
File metadata and controls
34 lines (29 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tox]
envlist = py{26,27,33,34},pypy,pypy3
[base]
deps = nose
mock<=1.0.1
PyYAML
six
[testenv]
deps = {[base]deps}
sure
blist
cython
py26: unittest2
py{26,27}: gevent
twisted
setenv = USE_CASS_EXTERNAL=1
LIBEV_EMBED=0
CARES_EMBED=0
changedir = {envtmpdir}
commands = nosetests --verbosity=2 --no-path-adjustment {toxinidir}/tests/unit/
nosetests --verbosity=2 --no-path-adjustment {toxinidir}/tests/integration/cqlengine
[testenv:pypy]
deps = {[base]deps}
commands = nosetests --verbosity=2 {toxinidir}/tests/unit/
[testenv:pypy3]
deps = {[base]deps}
commands = nosetests --verbosity=2 {toxinidir}/tests/unit/
# cqlengine/test_timestamp.py uses sure, which fails in pypy presently
# could remove sure usage