forked from jsonpickle/jsonpickle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (32 loc) · 676 Bytes
/
tox.ini
File metadata and controls
35 lines (32 loc) · 676 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
35
[tox]
minversion = 1.8
envlist = py{27,34,35,36,37}-{native,libs,sa10,sa12,sa13,sa}
[testenv]
deps =
coverage
libs: demjson
ecdsa
enum34; python_version=="2.7"
feedparser
jsonlib; python_version=="2.7"
numpy
pandas
pymongo
pytest
pytest-cov
libs: simplejson
sa13: sqlalchemy>=1.2,<1.4
sa12: sqlalchemy>=1.1,<1.3
sa11: sqlalchemy>=1.0,<1.2
sa10: sqlalchemy>=0.9,<1.1
libs: ujson
libs: yajl
commands =
python -m pytest --doctest-modules tests jsonpickle
[testenv:flake8]
deps = flake8
commands = flake8 .
[flake8]
max-line-length = 80
exclude = .tox,docs,thirdparty*,env*,build,dist
filename = *.py