1[tox]
2envlist=py27,py33,py34,py35,py36,py37,py38,pypy,flake8
3
4[testenv]
5deps= pytest
6commands= python -m pytest -rfsxX {posargs}
7
8[testenv:flake8]
9basepython=python
10deps=flake8
11commands= flake8 six.py
12