Revision e6cf11d74a7365f7f43b255b6d1802c84f08fa14 authored by Eric Hennenfent on 26 April 2019, 23:07:48 UTC, committed by Eric Hennenfent on 26 April 2019, 23:07:48 UTC
1 parent 4b75e0d
Raw File
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/,iterpickle.py
back to top