Fixes from the battlefield

This commit is contained in:
Alexandre Aubin 2023-01-17 02:03:35 +01:00
parent 1a204c6593
commit 8cd12dab76
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ def generate_test_list_base(test_manifest, default_install_args, is_webapp, is_m
continue
install_args = copy.copy(default_install_args)
install_args.update(test_suite.get("args"))
install_args.update(test_suite.get("args", {}))
default_meta = {
"preinstall_template": test_suite.get("preinstall_template", ""),

View file

@ -33,7 +33,7 @@ run_all_tests() {
tests_toml="$package_path/tests.toml"
if [ -e "$tests_toml" ]
then
python3 "./lib/parse_tests_toml.py" "$package_path" "$TEST_CONTEXT"
python3 "./lib/parse_tests_toml.py" "$package_path" "$TEST_CONTEXT/tests"
else
# Parse the check_process only if it's exist
check_process="$package_path/check_process"