File python-pytest-ansible.spec of Package python-pytest-ansible
#
# spec file for package python-pytest-ansible
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
%if 0%{?suse_version} < 1550
# Leap15, SLES15
%if %pythons == "python310"
%define ansible_python python310
%define ansible_python_executable python3.10
%define ansible_python_sitelib %python310_sitelib
#
%define python_for_dependencies python310
%endif
%if %pythons == "python311"
%define ansible_python python311
%define ansible_python_executable python3.11
%define ansible_python_sitelib %python311_sitelib
#
%define python_for_dependencies python311
%endif
%else
# Tumbleweed
%define pythons python3
%define ansible_python python3
%define ansible_python_executable python3
%define ansible_python_sitelib %python3_sitelib
#
%define python_for_dependencies python3
%endif
Name: python-pytest-ansible
Version: 25.5.0
Release: 0
Summary: Plugin for pytest to simplify calling ansible modules from tests or fixtures
License: MIT
URL: https://github.com/ansible-community/pytest-ansible
Source: pytest-ansible-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 63.0.0}
BuildRequires: %{python_module setuptools_scm >= 7.0.5}
BuildRequires: %{python_module wheel}
BuildRequires: git-core
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: ansible-core >= 2.15.0
BuildRequires: %{python_module pytest >= 6}
BuildRequires: molecule >= 6.0.0
# /SECTION
BuildRequires: fdupes
Requires: %{python_for_dependencies}-packaging
Requires: %{python_for_dependencies}-pytest >= 6
Requires: ansible-core > 2.14
Requires: python-ansible-compat >= 4.1.11
Suggests: %{python_for_dependencies}-attrs == 22.2.0
Suggests: %{python_for_dependencies}-iniconfig == 2.0.0
Suggests: %{python_for_dependencies}-pluggy == 1.0.0
Suggests: %{python_for_dependencies}-pytest == 7.2.2
BuildArch: noarch
%python_subpackages
%description
Plugin for pytest to simplify calling ansible modules from tests or fixtures
%prep
%autosetup -p1 -n pytest-ansible-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
IGNORED_CHECKS="test_connection_failure_extra_inventory_v2"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_connection_failure_v2"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_contacted_with_params"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_contacted_with_params_and_host_pattern_marker"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_contacted_with_params_and_inventory_host_pattern_marker"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_contacted_with_params_and_inventory_marker"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_dark_with_debug_enabled"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_dark_with_params"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_dark_with_params_and_host_pattern_marker"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_dark_with_params_and_inventory_marker"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_molecule_disabled"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_molecule_runtest"
%pytest -k "not (${IGNORED_CHECKS})" -W ignore:'There is no current event loop'
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/pytest_ansible
%{python_sitelib}/pytest_ansible-%{version}.dist-info
%changelog