https://github.com/trailofbits/manticore
Raw File
Tip revision: 5213781ed7506de6c76a65e849dfdd559738c011 authored by Josselin on 02 July 2019, 19:24:59 UTC
Update travis test (consider missing EIP145 support https://github.com/trailofbits/manticore/issues/1166)
Tip revision: 5213781
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 = 100
exclude = docs/,examples/,scripts/,tests/

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