mirror of
https://github.com/YunoHost-Apps/adguardhome_ynh.git
synced 2024-09-03 18:06:23 +02:00
implementing CI tests for "open_port_53" and "dns_over_https"
This commit is contained in:
parent
6577bd22bb
commit
be36cfb279
1 changed files with 25 additions and 4 deletions
29
tests.toml
29
tests.toml
|
@ -2,8 +2,29 @@ test_format = 1.0
|
|||
|
||||
[default]
|
||||
|
||||
# -------------------------------
|
||||
# Default args to use for install
|
||||
# -------------------------------
|
||||
# -------------------------------
|
||||
# Default args to use for install
|
||||
# -------------------------------
|
||||
|
||||
args.dns_over_https=1
|
||||
# false by default
|
||||
args.open_port_53 = 1
|
||||
args.dns_over_https = 1
|
||||
|
||||
# -------------------------------
|
||||
# additional tests suite
|
||||
# -------------------------------
|
||||
|
||||
[open_port_53]
|
||||
only = ["install.root"]
|
||||
args.open_port_53 = 0
|
||||
args.dns_over_https = 1
|
||||
|
||||
[open_doh_doq_ports]
|
||||
only = ["install.root"]
|
||||
args.open_port_53 = 1
|
||||
args.dns_over_https = 0
|
||||
|
||||
[open_both_port_53_and_doh_doq_ports]
|
||||
only = ["install.root"]
|
||||
args.open_port_53 = 0
|
||||
args.dns_over_https = 0
|
||||
|
|
Loading…
Add table
Reference in a new issue