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
This commit is contained in:
Cole Walker 2021-01-19 15:43:11 -05:00
parent 0d723d79e5
commit c525a7fe47
49 changed files with 44 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.tox

8
.zuul.yaml Normal file
View File

@ -0,0 +1,8 @@
---
- project:
check:
jobs:
- openstack-tox-linters
gate:
jobs:
- openstack-tox-linters

0
CONTRIBUTING.rst Normal file
View File

0
HACKING.rst Normal file
View File

0
centos_build_layer.cfg Normal file
View File

0
centos_iso_image.inc Normal file
View File

0
centos_pkg_dirs Normal file
View File

View File

View File

0
config Normal file
View File

0
requirements.txt Normal file
View File

0
test-requirements.txt Normal file
View File

35
tox.ini Normal file
View File

@ -0,0 +1,35 @@
[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}