cleanup
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-06-09 13:16:30 +02:00
parent 0ca5675f84
commit e4e75a2547
2 changed files with 5 additions and 18 deletions

View File

@ -109,4 +109,8 @@ trigger:
depends_on:
- deployment
---
kind: signature
hmac: e4131556105977708ee8fd61209ac7f916121980bdf89aa02817f83feaaf17ba
...

View File

@ -10,22 +10,5 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
def test_python3_is_installed(host):
python3 = host.package("python3")
python3 = host.package("python36")
assert python3.is_installed
def test_python3_running_and_enabled(host):
python3 = host.service("python3")
assert python3.is_running
assert python3.is_enabled
def test_python3_process(host):
# Verify worker procs are running
master = host.process.get(user="root", comm="python3")
workers = host.process.filter(ppid=master.pid)
assert len(workers) > 0
def test_python3_socket(host):
# Verify the socket is listening for HTTP traffic
assert host.socket("tcp://0.0.0.0:80").is_listening