https://github.com/trailofbits/manticore
Raw File
Tip revision: 4c40034186c2d389972eb942882801b1e9416da6 authored by Gustavo Grieco on 02 April 2021, 16:51:06 UTC
Avoid adding a constrain to take the gas from the balance when oog is "ignore"
Tip revision: 4c40034
tox.ini
[tox]
envlist = py3{6,7,8,9}

[testenv]
deps = .[dev]
commands = pytest -n auto tests

[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