Files @ 922ac53a02a7
Branch filter:

Location: majic-ansible-roles/roles/common/molecule/default/tests/test_deprecated.py

branko
MAR-192: Drop the Python 2.7-specific packages from installation:

- These are leftovers from previous work for dropping the Python 2.7
support.
import os

import testinfra.utils.ansible_runner

import pytest


testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('parameters-*')


@pytest.mark.parametrize('path', [
    '/etc/pip_check_requirements_upgrades-py3/',
    '/var/lib/pipreqcheck/virtualenv-py3/',
    '/etc/cron.d/check_pip_requirements-py3',
])
def test_deprecated_paths_are_absent(host, path):
    """
    Tests if deprecated paths are absent.
    """

    with host.sudo():
        assert not host.file(path).exists