|
|
@@ -6,11 +6,10 @@
|
|
|
# running the tests.
|
|
|
|
|
|
[tox]
|
|
|
-envlist = {py3.8,pypy}-{aws,azure,gcp,openstack,mock}
|
|
|
+envlist = {py3.8,pypy}-{aws,azure,gcp,openstack,mock},lint
|
|
|
|
|
|
[testenv]
|
|
|
-commands = flake8 cloudbridge tests setup.py
|
|
|
- # see setup.cfg for options sent to nosetests and coverage
|
|
|
+commands = # see setup.cfg for options sent to nosetests and coverage
|
|
|
nosetests -v --nocapture --nologcapture --logging-format='%(asctime)s [%(levelname)s] %(name)s: %(message)s' {posargs}
|
|
|
setenv =
|
|
|
MOTO_AMIS_PATH=./tests/fixtures/custom_amis.json
|
|
|
@@ -31,3 +30,7 @@ passenv =
|
|
|
deps =
|
|
|
-rrequirements.txt
|
|
|
coverage
|
|
|
+
|
|
|
+[testenv:lint]
|
|
|
+commands = flake8 cloudbridge tests setup.py
|
|
|
+deps = flake8
|