Cole Walker c525a7fe47 Create directory structure for ptp app
Outlines the directory structure required for the project. Most files
are empty at this point.
This includes a minimal zuul and tox config to enable merging.

Story: 2008529
Task: 41618

Signed-off-by: Cole Walker <cole.walker@windriver.com>
Change-Id: Ib098e0714eb1a5b0c9f0bed257fabdf44253cc5f
2021-01-20 11:17:59 -05:00

36 lines
876 B
INI

[tox]
envlist = linters
minversion = 2.3
skipsdist = True
sitepackages=False
[testenv]
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_DEBUG=1
OS_LOG_CAPTURE=1
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
whitelist_externals =
bash
[testenv:bashate]
# Treat all E* codes as Errors rather than warnings using: -e 'E*'
commands =
bash -c "find {toxinidir} \
-not \( -type d -name .?\* -prune \) \
-type f \
-not -name \*~ \
-not -name \*.md \
-name \*.sh \
-print0 | xargs -r -n 1 -0 bashate -v \
-e 'E*'"
[testenv:linters]
commands =
{[testenv:bashate]commands}