1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/domoticz_ynh.git synced 2024-09-03 18:26:17 +02:00
domoticz_ynh/tests.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2023-02-27 23:24:05 +01:00
test_format = 1.0
[default]
args.mqtt_domain="sub.domain.tld"
test_upgrade_from.27311ad.name = "2022.2"
[With_Mosquitto_upgrade_with_mosquitto]
preinstall = """
set -euxo pipefail
yunohost domain add mqtt.domain.tld
"""
preupgrade = """
set -euxo pipefail
yunohost app setting domoticz mqtt_domain -v mqtt.domain.tld
"""
args.mqtt_domain="mqtt.domain.tld"
2023-02-28 23:36:30 +01:00
exclude = ["package_linter"]
2023-02-27 23:24:05 +01:00
test_upgrade_from.27311ad.name = "2022.2 with mosquitto"
test_upgrade_from.27311ad.args.mqtt_domain="mqtt.domain.tld"
[With_Mosquitto_upgrade_without_mosquitto]
preinstall = """
set -euxo pipefail
yunohost domain add mqtt.domain.tld
"""
preupgrade = """
set -euxo pipefail
yunohost app setting domoticz mqtt_domain -v mqtt.domain.tld
"""
2023-02-28 23:36:30 +01:00
args.mqtt_domain="mqtt.domain.tld"
exclude = ["package_linter", "install.private", "install.multi", "backup_restore", "change_url"]
2023-02-27 23:24:05 +01:00
test_upgrade_from.27311ad.name = "2022.2 without mosquitto"
test_upgrade_from.27311ad.args.mqtt_domain="sub.domain.tld"