try to fix certbot path
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2020-04-20 23:45:34 +02:00
parent ad5c0a1f31
commit 2a3ed206cb
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ def test_certbot_is_installed(host):
def test_certbot_run(host):
cmd = host.run("certbot --help")
cmd = host.run("~/.local/bin/certbot --help")
assert "Certbot can obtain and install HTTPS/TLS/SSL certificates." in cmd.stdout
assert cmd.succeeded