2019-07-02 12:19:01 +00:00
|
|
|
%global pypi_name pytest
|
|
|
|
Name: python-%{pypi_name}
|
2021-09-09 10:12:13 +00:00
|
|
|
Version: 6.2.5
|
2019-07-02 12:19:01 +00:00
|
|
|
Release: 0%{?dist}
|
|
|
|
Summary: Simple powerful testing with Python
|
|
|
|
License: MIT
|
|
|
|
URL: https://pytest.org
|
|
|
|
Source0: %{pypi_source}
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2020-10-26 15:11:32 +00:00
|
|
|
BuildRequires: python3-devel
|
2019-07-02 12:19:01 +00:00
|
|
|
BuildRequires: pyproject-rpm-macros
|
|
|
|
|
|
|
|
%description
|
2020-04-15 14:44:04 +00:00
|
|
|
This is a pure Python package with executables. It has a test suite in tox.ini
|
|
|
|
and test dependencies specified via the [test] extra.
|
|
|
|
Building this tests:
|
|
|
|
- generating runtime and test dependencies by both tox.ini and extras
|
|
|
|
- pyproject.toml with the setuptools backend and setuptools-scm
|
|
|
|
- passing arguments into %%tox
|
2019-07-02 12:19:01 +00:00
|
|
|
|
|
|
|
%package -n python3-%{pypi_name}
|
|
|
|
Summary: %{summary}
|
|
|
|
|
|
|
|
%description -n python3-%{pypi_name}
|
2020-04-15 14:44:04 +00:00
|
|
|
%{summary}.
|
2019-07-02 12:19:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -p1 -n %{pypi_name}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
2019-08-13 12:42:21 +00:00
|
|
|
%pyproject_buildrequires -x testing -t
|
2019-07-02 12:19:01 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%pyproject_wheel
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%pyproject_install
|
2020-08-06 12:27:30 +00:00
|
|
|
%pyproject_save_files '*pytest' +auto
|
|
|
|
|
2019-07-02 12:19:01 +00:00
|
|
|
|
2019-07-18 08:50:13 +00:00
|
|
|
%check
|
2020-04-15 14:44:04 +00:00
|
|
|
# Only run one test (which uses a test-only dependency, hypothesis)
|
|
|
|
# See how to pass options trough the macro to tox, trough tox to pytest
|
2019-08-13 12:42:21 +00:00
|
|
|
%tox -- -- -k metafunc
|
2019-07-18 08:50:13 +00:00
|
|
|
|
2019-07-02 12:19:01 +00:00
|
|
|
|
2020-04-15 14:44:04 +00:00
|
|
|
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
2019-07-02 12:19:01 +00:00
|
|
|
%doc README.rst
|
|
|
|
%doc CHANGELOG.rst
|
|
|
|
%license LICENSE
|