https://github.com/trailofbits/manticore
Raw File
Tip revision: fc7b4df6ba62295639b78385955542ae0a5e0ec6 authored by yeti-detective on 02 September 2018, 21:26:44 UTC
also removing ' from end of binary output. used to read b'some_hex' now will only read some_hex without single quotes. empty output will be nothing as opposed to ''
Tip revision: fc7b4df
tox.ini
[tox]
envlist = py3{6,7}

[testenv]
deps = 
	.[dev]
commands = nosetests tests
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/,parsetab.py,iterpickle.py
back to top