blob: c94e0d2fa1c922f8c79bf6806a69a0873ded3184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[tox]
envlist = py26, py27, flake8
skipsdist=True
[testenv]
deps=
pytest
commands=
python setup.py develop
py.test -v
[testenv:flake8]
deps=
flake8
commands=flake8 --select=F ceph_brag.py
|