https://github.com/trailofbits/manticore
Raw File
Tip revision: 49478b1f366b1f0369126fbc0fb0645b9b45788b authored by Pierre Pronchery on 05 June 2018, 23:34:24 UTC
Add support for NetBSD as a host OS (#893)
Tip revision: 49478b1
tox.ini
[tox]
envlist = py27,py35

[testenv]
deps = .[dev]
commands = nosetests
install_command = pip install --no-binary keystone-engine {opts} {packages}

[testenv:pep8]
basepython = python2.7
deps = flake8
commands =
    flake8 .

[pep8]
ignore = E265,E501
max-line-length = 160
exclude = docs/,examples/,scripts/,tests/

[flake8]
ignore = E265,E501,F403,F405,E266,E712,F841,E741,E722,E731
max-line-length = 160
exclude = .tox,.*.egg,.git,docs/,examples/,scripts/,tests/
back to top