use correct port for tests
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-05-20 11:47:36 +02:00
parent 1adf7588e9
commit f47d63fd8e
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
# ---> Ansible # ---> Ansible
*.retry *.retry
filter/plugins/
library

View File

@ -19,8 +19,8 @@ def test_hassio_running_and_enabled(host):
def test_hassio_socket(host): def test_hassio_socket(host):
# Verify the socket is listening for HTTP traffic # Verify the socket is listening for HTTP traffic
for _ in range(30): for _ in range(30):
if host.socket("tcp://0.0.0.0:80").is_listening: if host.socket("tcp://0.0.0.0:8123").is_listening:
break break
time.sleep(1) time.sleep(1)
assert host.socket("tcp://0.0.0.0:80").is_listening assert host.socket("tcp://0.0.0.0:8123").is_listening