e8666ea678
Insert nft rule on openstack-INPUT chain allowing incoming traffic on lxdbr0. Switch charmbuild to 2.x/stable. Change-Id: I1ccb90cf46751875c0e1b4b528e7bab1e6befc13
113 lines
2.8 KiB
Bash
Executable File
113 lines
2.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o xtrace
|
|
|
|
source common.sh
|
|
|
|
if [[ $1 == "fmt" ]];
|
|
then
|
|
src_path_array=$(ls -d -1 "charms/"**/src)
|
|
tst_path_array=$(ls -d -1 "charms/"**/tests)
|
|
lib_path_array=$(ls -d -1 "charms/"**/lib)
|
|
|
|
src_path="${src_path_array[*]}"
|
|
tst_path="${tst_path_array[*]}"
|
|
lib_path="${lib_path_array[*]}"
|
|
|
|
isort ${src_path} ${tst_path}
|
|
black --config pyproject.toml ${src_path} ${tst_path}
|
|
elif [[ $1 == "pep8" ]];
|
|
then
|
|
src_path_array=$(ls -d -1 "charms/"**/src)
|
|
tst_path_array=$(ls -d -1 "charms/"**/tests)
|
|
|
|
src_path="${src_path_array[*]}"
|
|
tst_path="${tst_path_array[*]}"
|
|
|
|
codespell ${src_path} ${tst_path}
|
|
pflake8 --config pyproject.toml ${src_path} ${tst_path}
|
|
isort --check-only --diff ${src_path} ${tst_path}
|
|
black --config pyproject.toml --check --diff ${src_path} ${tst_path}
|
|
elif [[ $1 =~ ^(py3|py310|py311)$ ]];
|
|
then
|
|
# Run py3 on ops-sunbeam
|
|
pushd ops-sunbeam
|
|
stestr run --slowest || exit 1
|
|
popd
|
|
|
|
# Run py3 on all sunbeam charms
|
|
charms=($(ls charms))
|
|
for charm in ${charms[@]}; do
|
|
push_common_files $charm || exit 1
|
|
pushd charms/$charm
|
|
PYTHONPATH=./src:./lib stestr run --slowest || exit 1
|
|
popd
|
|
pop_common_files $charm || exit 1
|
|
done
|
|
elif [[ $1 == "cover" ]];
|
|
then
|
|
coverage erase
|
|
|
|
# Run coverage on ops-sunbeam
|
|
pushd ops-sunbeam
|
|
coverage erase
|
|
PYTHON="coverage run --omit .tox/*,tests/*" stestr run --slowest || exit 1
|
|
coverage combine
|
|
popd
|
|
|
|
# Run coverage on all sunbeam charms
|
|
charms=($(ls charms))
|
|
for charm in ${charms[@]}; do
|
|
push_common_files $charm || exit 1
|
|
pushd charms/$charm
|
|
coverage erase
|
|
PYTHONPATH=./src:./lib:../../ops-sunbeam PYTHON="coverage run --omit .tox/*,tests/*,src/templates/*" stestr run --slowest || exit 1
|
|
coverage combine
|
|
popd
|
|
done
|
|
|
|
# Prepare coverage report
|
|
coverage combine charms/*/.coverage ops-sunbeam/.coverage
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
coverage report
|
|
|
|
# Common files should be deleted after coverage combine
|
|
for charm in ${charms[@]}; do
|
|
pop_common_files $charm || exit 1
|
|
done
|
|
elif [[ $1 == "build" ]];
|
|
then
|
|
if [[ $# != 2 ]];
|
|
then
|
|
echo "Command format: tox -e build <charm>"
|
|
exit 1
|
|
fi
|
|
|
|
charm=$2
|
|
charms=($(ls charms))
|
|
if [[ ! ${charms[@]} =~ $charm ]];
|
|
then
|
|
echo "Argument should be one of ${charms[@]}";
|
|
exit 1
|
|
fi
|
|
|
|
push_common_files $charm || exit 1
|
|
pushd charms/$charm || exit 1
|
|
charmcraft -v pack || exit 1
|
|
if [[ -e "${charm}.charm" ]];
|
|
then
|
|
echo "Removing bad downloaded charm maybe?"
|
|
rm "${charm}.charm"
|
|
fi
|
|
echo "Renaming charm ${charm}_*.charm to ${charm}.charm"
|
|
|
|
mv ${charm}_*.charm ${charm}.charm
|
|
|
|
popd || exit 1
|
|
pop_common_files $charm || exit 1
|
|
else
|
|
echo "tox argument should be one of pep8, py3, py310, py311, cover";
|
|
exit 1
|
|
fi
|