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:
parent
0d723d79e5
commit
c525a7fe47
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.tox
|
8
.zuul.yaml
Normal file
8
.zuul.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
- project:
|
||||
check:
|
||||
jobs:
|
||||
- openstack-tox-linters
|
||||
gate:
|
||||
jobs:
|
||||
- openstack-tox-linters
|
0
CONTRIBUTING.rst
Normal file
0
CONTRIBUTING.rst
Normal file
0
HACKING.rst
Normal file
0
HACKING.rst
Normal file
0
centos_build_layer.cfg
Normal file
0
centos_build_layer.cfg
Normal file
0
centos_iso_image.inc
Normal file
0
centos_iso_image.inc
Normal file
0
centos_pkg_dirs
Normal file
0
centos_pkg_dirs
Normal file
0
centos_pkg_dirs_containers
Normal file
0
centos_pkg_dirs_containers
Normal file
0
centos_stable_docker_images.inc
Normal file
0
centos_stable_docker_images.inc
Normal file
0
ptp-notification-helm/centos/build_srpm.data
Normal file
0
ptp-notification-helm/centos/build_srpm.data
Normal file
0
ptp-notification-helm/centos/build_srpm.spec
Normal file
0
ptp-notification-helm/centos/build_srpm.spec
Normal file
0
ptp-notification-helm/ptp-notification-helm/README
Normal file
0
ptp-notification-helm/ptp-notification-helm/README
Normal file
0
python-k8sapp-ptp-notification/k8sapp_ptp_notification/.gitignore
vendored
Normal file
0
python-k8sapp-ptp-notification/k8sapp_ptp_notification/.gitignore
vendored
Normal file
0
requirements.txt
Normal file
0
requirements.txt
Normal file
0
stx-ptp-notification-helm/centos/build_srpm.data
Normal file
0
stx-ptp-notification-helm/centos/build_srpm.data
Normal file
0
test-requirements.txt
Normal file
0
test-requirements.txt
Normal file
35
tox.ini
Normal file
35
tox.ini
Normal 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}
|
Loading…
x
Reference in New Issue
Block a user