mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00

Overview: 1) fixed up .gitignore file to use absolute paths (to project dir). 2) updated tox to run both manifest tests and flake8 3) updated yml file cause NULL for aws credentials causes an error on validation. 4) actually added the tests under tests/integration
16 lines
346 B
INI
16 lines
346 B
INI
[flake8]
|
|
ignore = E101,E221,E241,E501,W191
|
|
max-line-length = 110
|
|
|
|
[tox]
|
|
envlist = flake8, integration
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
commands = flake8 bootstrapvz/ --exclude=minify_json.py
|
|
|
|
[testenv:integration]
|
|
deps =
|
|
nose
|
|
nose-cov
|
|
commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive
|