-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
24 lines (24 loc) · 866 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
[tox]
envlist = py36,docs
[pytest]
xfail_strict = true
testpaths = tests
log_level = debug
# invalid escape sequence = using latex in non-raw docstrings, by libraries.
# numpy.ufunc = float size change, noticed by Cython, should ignore.
# numpy.dtype = float size change, noticed by Cython, should ignore.
# can't resolve = library using dynamic loading, but it works fine.
# sqlalchemy deprecation = an argument from sqlalchemy we can't control
filterwarnings =
error::Warning
ignore:invalid escape sequence:DeprecationWarning
ignore:numpy.ufunc size changed
ignore:numpy.dtype size changed
ignore:can't resolve package from __spec__:ImportWarning
ignore: The create_engine.convert_unicode
[testenv]
extras = testing
commands = py.test
[testenv:docs]
extras = documentation
commands = sphinx-build -WT -b dummy -d docs docs docs/_build/html