Rename internal:storage to .mudpy.filing
[mudpy.git] / tox.ini
1 # Copyright (c) 2016-2017 Jeremy Stanley <fungi@yuggoth.org>. Permission
2 # to use, copy, modify, and distribute this software is granted under
3 # terms provided in the LICENSE file distributed with this software.
4
5 [tox]
6 minversion = 2.0
7 envlist = flake8
8 skipsdist = True
9
10 [testenv]
11 usedevelop = True
12 install_command = pip install {opts} {packages}
13 setenv =
14    VIRTUAL_ENV={envdir}
15    PYTHONWARNINGS=default::DeprecationWarning
16 deps = -r{toxinidir}/test-requirements.txt
17 commands = python setup.py test --slowest --testr-args='{posargs}'
18
19 [testenv:flake8]
20 basepython=python3
21 commands = flake8 {posargs}
22
23 [testenv:venv]
24 commands = {posargs}
25
26 [flake8]
27 show-source = True
28 exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build