use correct port for tests
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
1adf7588e9
commit
f47d63fd8e
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
||||
# ---> Ansible
|
||||
*.retry
|
||||
filter/plugins/
|
||||
library
|
||||
|
||||
|
@ -19,8 +19,8 @@ def test_hassio_running_and_enabled(host):
|
||||
def test_hassio_socket(host):
|
||||
# Verify the socket is listening for HTTP traffic
|
||||
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
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user