Following change aims at setting up the tooling for events-api againts latest requirements and guideliness from OpenStack. Removing old code , add basic structure of the python modules. Add basic documentation and release notes. Prepare to use oslo-config-generator. Add devstack basic setup to the project. Story: 2001112 Task: 4798 Change-Id: I76d737bf9d1216b041bc1a518cc2098f28e7da7b
6 lines
234 B
Bash
6 lines
234 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Ignore too long lines error E006 from bashate and treat
|
|
# E005, E042 as errors.
|
|
SH_FILES=$(find ./devstack -type d -name files -prune -o -type f -name '*.sh' -print)
|
|
bashate -v -iE006 -eE005,E042 ${SH_FILES:-''} |