23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
98 lines
2.1 KiB
Nix
98 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, ansible-compat
|
|
, ansible-core
|
|
, buildPythonPackage
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, packaging
|
|
, pytest
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-ansible";
|
|
version = "24.1.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ansible";
|
|
repo = "pytest-ansible";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-NtGk+azpSZZm9PUf6Q1Qipo/zaUH+bed7k3oFnQyKjw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/conftest.py inventory \
|
|
--replace '/usr/bin/env' '${coreutils}/bin/env'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
buildInputs = [
|
|
pytest
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ansible-core
|
|
ansible-compat
|
|
packaging
|
|
];
|
|
|
|
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"
|
|
] ++ lib.optionals (lib.versionAtLeast ansible-core.version "2.16") [
|
|
# Test fail in the NixOS environment
|
|
"tests/test_adhoc.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 ];
|
|
};
|
|
}
|