-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathtox.ini
45 lines (37 loc) · 805 Bytes
/
tox.ini
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
36
37
38
39
40
41
42
43
44
[tox]
envlist = py27,py36,py37
[testenv]
# Local Debian dependencies:
# libmysqlclient-dev
# postgresql-server-dev-9.6
# python3-dev
# downloadcache=./downloadcache
deps =
argon2
bottle
flask
mock
mysqlclient
psycopg2
pymongo
pytest
pytest-xdist
scrypt
sqlalchemy
webtest
commands = py.test -v --junitxml={envlogdir}/result.xml \
tests/test.py \
tests/test_argon2.py \
tests/test_pbkdf2.py \
tests/test_scrypt.py \
tests/test_functional.py
# FIXME
# tests/test_flask.py \
#tests/test_webtest_bottle.py
#tests/test_webtest_decorated.py
#tests/test_webtest_flask.py
#tests/test_webtest_parallel.py
#tests/test_functional_decorated.py \
#tests/test_functional_flask.py \
#tests/test_functional_json.py \
#tests/test_functional_parallel.py \