https://github.com/trailofbits/manticore
Raw File
Tip revision: 20134f2855cf6eb7efac7a4e7c191b46b0b228c0 authored by dependabot[bot] on 24 May 2023, 04:00:28 UTC
Bump pypa/gh-action-pip-audit from 1.0.6 to 1.0.8
Tip revision: 20134f2
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