e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
93 lines
1.9 KiB
Nix
93 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, ansible-core
|
|
, buildPythonPackage
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, pytest
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, setuptools-scm
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-ansible";
|
|
version = "4.1.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ansible";
|
|
repo = "pytest-ansible";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-51DQ+NwD454XaYLuRxriuWRZ8uTSX3ZpadXdxs7FspQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/conftest.py inventory \
|
|
--replace '/usr/bin/env' '${coreutils}/bin/env'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
buildInputs = [
|
|
pytest
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ansible-core
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"tests/"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Host unreachable in the inventory
|
|
"test_become"
|
|
# [Errno -3] Temporary failure in name resolution
|
|
"test_connection_failure_v2"
|
|
"test_connection_failure_extra_inventory_v2"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# These tests fail in the Darwin sandbox
|
|
"test_ansible_facts"
|
|
"test_func"
|
|
"test_param_override_with_marker"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Test want s to execute pytest in a subprocess
|
|
"tests/integration/test_molecule.py"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# These tests fail in the Darwin sandbox
|
|
"tests/test_adhoc.py"
|
|
"tests/test_adhoc_result.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pytest_ansible"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin for pytest to simplify calling ansible modules from tests or fixtures";
|
|
homepage = "https://github.com/jlaska/pytest-ansible";
|
|
changelog = "https://github.com/ansible-community/pytest-ansible/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tjni ];
|
|
};
|
|
}
|