- Initial specfile for v0.6.2
- Required to test jupyter-server 2 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-pytest-jupyter?expand=0&rev=1
This commit is contained in:
commit
c110154985
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
||||
<multibuild>
|
||||
<package>test</package>
|
||||
</multibuild>
|
3
pytest_jupyter-0.6.2.tar.gz
Normal file
3
pytest_jupyter-0.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47f80f573384f274470282d044cd2566b81d7379112446f69adb1fcdfc3351ca
|
||||
size 15174
|
5
python-pytest-jupyter.changes
Normal file
5
python-pytest-jupyter.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 25 21:36:22 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Initial specfile for v0.6.2
|
||||
- Required to test jupyter-server 2
|
106
python-pytest-jupyter.spec
Normal file
106
python-pytest-jupyter.spec
Normal file
@ -0,0 +1,106 @@
|
||||
#
|
||||
# spec file for package python-pytest-jupyter
|
||||
#
|
||||
# Copyright (c) 2022 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/
|
||||
#
|
||||
|
||||
%global flavor @BUILD_FLAVOR@%{nil}
|
||||
%if "%{flavor}" == "test"
|
||||
%define psuffix -test
|
||||
%bcond_without test
|
||||
%else
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
|
||||
Name: python-pytest-jupyter%{psuffix}
|
||||
Version: 0.6.2
|
||||
Release: 0
|
||||
Summary: A pytest plugin for testing Jupyter libraries and extensions
|
||||
License: MIT and BSD-3-Clause
|
||||
URL: https://github.com/jupyter-server/pytest-jupyter
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-jupyter/pytest_jupyter-0.6.2.tar.gz
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: %{python_module hatchling}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: fdupes
|
||||
Requires: python-jupyter_core
|
||||
Requires: python-pytest
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module pytest-jupyter = %{version}}
|
||||
BuildRequires: %{python_module pytest-jupyter-server = %{version}}
|
||||
BuildRequires: %{python_module pytest-jupyter-client = %{version}}
|
||||
BuildRequires: %{python_module pytest-timeout}
|
||||
BuildRequires: %{python_module nbformat}
|
||||
%endif
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
A pytest plugin for testing Jupyter libraries and extensions.
|
||||
|
||||
%package client
|
||||
Summary: A pytest plugin for testing Jupyter libraries and extensions [client] extra
|
||||
Requires: python-pytest-jupyter = %{version}
|
||||
Requires: python-jupyter_client >= 7.4
|
||||
Requires: python-ipykernel
|
||||
|
||||
%description client
|
||||
A pytest plugin for testing Jupyter libraries and extensions.
|
||||
This subpackage provides the [client] extra dependencies
|
||||
|
||||
%package server
|
||||
Summary: A pytest plugin for testing Jupyter libraries and extensions [server] extra
|
||||
Requires: python-pytest-jupyter = %{version}
|
||||
Requires: python-pytest-jupyter-client = %{version}
|
||||
Requires: python-nbformat >= 5.3
|
||||
Requires: python-jupyter-server >= 1.21
|
||||
|
||||
%description server
|
||||
A pytest plugin for testing Jupyter libraries and extensions.
|
||||
This subpackage provides the [server] extra dependencies
|
||||
|
||||
%prep
|
||||
%setup -q -n pytest_jupyter-%{version}
|
||||
sed -i 's/--color=yes//' pyproject.toml
|
||||
|
||||
%if !%{with test}
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
%endif
|
||||
|
||||
%if %{with test}
|
||||
%check
|
||||
%pytest
|
||||
%endif
|
||||
|
||||
%if !%{with test}
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%{python_sitelib}/pytest_jupyter
|
||||
%{python_sitelib}/pytest_jupyter-%{version}.dist-info
|
||||
|
||||
%files %{python_files client}
|
||||
%license LICENSE
|
||||
|
||||
%files %{python_files server}
|
||||
%license LICENSE
|
||||
%endif
|
||||
|
||||
%changelog
|
Loading…
x
Reference in New Issue
Block a user