added test for complete execution

This commit is contained in:
PatchOfScotland
2023-01-10 13:34:41 +01:00
parent ea9a689b26
commit 5dded8fc96
6 changed files with 445 additions and 49 deletions

View File

@ -13,7 +13,7 @@ for entry in "$search_dir"/*
do
if [[ $entry == ./test* ]] && [[ $entry != ./$script_name ]];
then
pytest $entry
pytest $entry "-W ignore::DeprecationWarning"
fi
done