Files
python-pytest-mypy/python-pytest-mypy.spec
Steve Kowalik 009a2afc25 - Update to 0.10.3:
* Stop failing if mypy only produces notes.
  * Update and loosen [build-system] requirements.
  * Work around python/mypy#14042.
  * Add support for Python 3.11.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-mypy?expand=0&rev=9
2023-02-08 03:53:59 +00:00

70 lines
2.1 KiB
RPMSpec

#
# spec file for package python-pytest-mypy
#
# Copyright (c) 2023 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/
#
Name: python-pytest-mypy
Version: 0.10.3
Release: 0
Summary: Mypy static type checker plugin for Pytest
License: MIT
URL: https://github.com/realpython/pytest-mypy
Source: https://files.pythonhosted.org/packages/source/p/pytest-mypy/pytest-mypy-%{version}.tar.gz
Patch0: indirect-test-new-mypy.patch
BuildRequires: %{python_module setuptools_scm >= 3.5}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-attrs >= 19.0
Requires: python-filelock >= 3.0
Requires: python-mypy >= 0.900
Requires: python-pytest >= 2.8
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module attrs >= 19.0}
BuildRequires: %{python_module filelock >= 3.0}
BuildRequires: %{python_module mypy >= 0.900}
BuildRequires: %{python_module pexpect}
BuildRequires: %{python_module pytest >= 2.8}
BuildRequires: %{python_module pytest-xdist}
# /SECTION
%python_subpackages
%description
Mypy static type checker plugin for Pytest.
%prep
%autosetup -p1 -n pytest-mypy-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest -s
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/pytest_mypy.py
%{python_sitelib}/pytest[-_]mypy*/
%pycache_only %{python_sitelib}/__pycache__/
%changelog