chore: use Postgres 12 as default #2

Merged
xoxys merged 2 commits from default-12 into master 2021-11-28 14:27:46 +01:00
Showing only changes of commit e35f9e810a - Show all commits

View File

@ -8,12 +8,12 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
def test_postgres_is_installed(host):
postgres = host.package("postgresql10-server")
postgres = host.package("postgresql12-server")
assert postgres.is_installed
def test_postgres_running_and_enabled(host):
postgres = host.service("postgresql-10")
postgres = host.service("postgresql-12")
assert postgres.is_running
assert postgres.is_enabled