* new: test: flake8 test * chg: dev: add flake8 package for test * chg: dev: remove coverage rule
11 lines
256 B
INI
11 lines
256 B
INI
[tox]
|
|
envlist = python33,python34,python35
|
|
|
|
[testenv]
|
|
commands =
|
|
pip install -e .[tests]
|
|
pip install -r requirements.txt
|
|
python -m flake8
|
|
pytest --cov buku -vv {posargs}
|
|
;pytest --cov buku -vv -m 'not slowtest and not non_tox'{posargs}
|