mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00

DETAILS: - Apparently a potential security issue with yaml.load vs yaml.safe_load. Like pickling, yaml.load could result in arbitrary code being run. - tox.ini file includes the flake8 settings for this project, build spec for 2.7 and line for eventually testing the project.
10 lines
278 B
INI
10 lines
278 B
INI
[flake8]
|
|
ignore = E101,E221,E241,E501,W191
|
|
max-line-length = 110
|
|
|
|
[tox]
|
|
envlist = py27
|
|
|
|
[testenv]
|
|
# Once tests have started being written, uncomment this to run tests when running tox.
|
|
#commands = nosetests -v tests --with-coverage --cover-package=bootstrapvz --cover-inclusive
|