mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
Fixes from the battlefield
This commit is contained in:
parent
1a204c6593
commit
8cd12dab76
2 changed files with 2 additions and 2 deletions
|
@ -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", ""),
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue