diff --git a/.drone.yml b/.drone.yml index 82da2b2..4b92613 100644 --- a/.drone.yml +++ b/.drone.yml @@ -109,4 +109,8 @@ trigger: depends_on: - deployment +--- +kind: signature +hmac: e4131556105977708ee8fd61209ac7f916121980bdf89aa02817f83feaaf17ba + ... diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index 9e72594..23843a7 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -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 - -