https://github.com/trailofbits/manticore
Raw File
Tip revision: 63ec581ab9b375630e6ba37a49fe3df2b0c87c62 authored by Stephan Tolksdorf on 31 October 2018, 16:40:55 UTC
Fix type check for caller arg in ManticoreEVM._transaction
Tip revision: 63ec581
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