https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: 1bef213b370c86f75caf24d35b52eeb153c01016 authored by Gabriel Wicke on 20 July 2016, 19:57:14 UTC
Lower trickle_fsync_interval to 8mb
Tip revision: 1bef213
tox.ini
[tox]
minversion = 1.6
skipsdist = True

envlist = py27, pep8

[flake8]
max-line-length = 100
# E123/E133, E226 and E241/E242 are default ignores
# E402: module level import not at top of file
ignore = E123,E133,E226,E241,E242,E402
# Upstream files that don't pass flake8 but should not be locally modified
exclude = modules/letsencrypt/files/acme_tiny.py,modules/varnish/files/varnishapi.py

[testenv]
deps =
    nose
    -rmodules/admin/data/requirements.txt
commands = nosetests modules/admin/data modules/mediawiki/files/apache/sites/redirects

[testenv:pep8]
deps = flake8==2.5.5
commands = flake8
back to top