forked from lingthio/Flask-User
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
23 lines (20 loc) · 787 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
[tox]
# Test on the following Python versions
# - Skipping py26 because of ASN1_verify:unknown message digest algorithm,
# SNIMissingWarning, and InsecurePlatformWarning
# - Skipping py33 because passlib can not find bcrypt
envlist = py26, py27, py33, py34, py35, py36
skip_missing_interpreters = True
toxworkdir=../builds/flask_user1/tox
skipsdist=True
# py26 fails on WTForms:
# site-packages/wtforms/widgets/core.py, line 124
# TypeError: html_params() keywords must be strings
# It may not like the unicode keywords supplied???
# kwargs: {u'type': u'hidden', u'id': 'csrf_token', u'value': None}
[testenv]
#setenv = PASSLIB_BUILTIN_BCRYPT = enabled
deps = -r{toxinidir}/requirements.txt
# Run automated test suite
commands=
py.test flask_user/tests/