blob: dc66681d2c0368ee621adda97c27f37dae370743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[tox]
envlist = py27, py35, py36, flake8
skip_missing_interpreters = true
[testenv]
deps=
pytest
mock
commands=py.test -v {posargs:ceph_volume/tests} --ignore=ceph_volume/tests/functional
[testenv:flake8]
deps=flake8
commands=flake8 {posargs:ceph_volume}
[tool:pytest]
norecursedirs = .* _* virtualenv
[flake8]
select=F,E9
|