https://github.com/trailofbits/manticore
Raw File
Tip revision: e444b1b16474892ac9bb1aac2b75c7a2e8533669 authored by sschriner on 06 May 2021, 15:43:40 UTC
Merge branch 'ss/heap_tracker' of github.com:trailofbits/manticore into ss/chess-heap-tracker
Tip revision: e444b1b
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