https://github.com/trailofbits/manticore
Raw File
Tip revision: 8475993877e59a5744af4a3ff092ac777490568e authored by Eric Kilmer on 30 December 2022, 15:30:15 UTC
Set Python 3.8 as minimum version
Tip revision: 8475993
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