21 lines
570 B
INI
21 lines
570 B
INI
|
# tox (https://tox.readthedocs.io/) is a tool for running tests
|
||
|
# in multiple virtualenvs. This configuration file will run the
|
||
|
# test suite on all supported python versions. To use it, "pip install tox"
|
||
|
# and then run "tox" from this directory.
|
||
|
|
||
|
[tox]
|
||
|
envlist = py35,py36,py37,py38
|
||
|
tox_pyenv_fallback = False
|
||
|
isolated_build = True
|
||
|
skip_missing_interpreters = True
|
||
|
|
||
|
[testenv]
|
||
|
deps = pipenv
|
||
|
commands =
|
||
|
pipenv install --skip-lock
|
||
|
pytest {posargs: -v --random-order-bucket module}
|
||
|
setenv =
|
||
|
LC_ALL = {env:LC_ALL:en_US.UTF-8}
|
||
|
LANG = {env:LC_ALL:en_US.UTF-8}
|
||
|
|