
We don't transfer git history since it may contain proprietary data that we cannot have in an open sources version. Change-Id: I9586124c1720db69a76b9390e208e9f0ba3b86d4
27 lines
385 B
INI
27 lines
385 B
INI
[tox]
|
|
skipsdist = True
|
|
requires =
|
|
tox >= 2.0
|
|
|
|
[flake8]
|
|
exclude =
|
|
.git,
|
|
__pycache__,
|
|
*.pyc,
|
|
.cache,
|
|
.tox
|
|
max-line-length = 120
|
|
|
|
[testenv]
|
|
platform = linux
|
|
basepython = python3
|
|
deps =
|
|
-rrequirements.txt
|
|
-rtest-requirements.txt
|
|
|
|
[testenv:flake8]
|
|
commands = flake8 pybuild tests
|
|
|
|
[testenv:pytest]
|
|
commands = python -m pytest tests
|