https://github.com/trailofbits/manticore
Raw File
Tip revision: bf0d279e6d80a715af4a8cc3bf5ce53fc3d0d4b4 authored by feliam on 16 August 2018, 17:35:08 UTC
forgoten var
Tip revision: bf0d279
tox.ini
[tox]
envlist = py3{6,7}

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

[testenv:pep8]
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