Install FTL's development branch to get the latest features during tests

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/5519/head
DL6ER 5 months ago
parent 3f7413d538
commit e8338d0590
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -176,6 +176,12 @@ def test_installPihole_fresh_install_readableFiles(host):
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
setup_var_file += "EOF\n"
host.run(setup_var_file)
# Install FTL's development branch to get the latest features
host.run(
"""
echo "development" > /etc/pihole/ftlbranch
"""
)
install = host.run(
"""
export TERM=xterm
@ -431,6 +437,12 @@ def test_installPihole_fresh_install_readableBlockpage(host, test_webpage):
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
setup_var_file += "EOF\n"
host.run(setup_var_file)
# Install FTL's development branch to get the latest features
host.run(
"""
echo "development" > /etc/pihole/ftlbranch
"""
)
installWeb = host.run(
"""
export TERM=xterm

Loading…
Cancel
Save